앞서 if문을 이용해 입력받은 숫자가 5의 배수인지 판별하는 프로그램을 만들었었다.(※ 참고] 입력받은 숫자가 5의 배수인지 판별하는 프로그램 : https://thpop.tistory.com/20) 이번에는 switch-case 구문을 이용해서 만들어 볼 것이다. 프로그램은 아래와 같다.#include int main(){ int input; printf("세 자리 숫자를 입력하시오: "); scanf("%d", &input); int last_digit = input % 10; switch (last_digit){ case 5: printf("%d는 5의 배수",input); break; case 0: printf("%d는 5의 배수",input); break; default:..