백준 3052 / C / 나머지 / *
#include int main(void) { int arr[10]; int cnt = 0; int result = 0; for (int i = 0; i < 10; i++) { scanf("%d", &arr[i]); arr[i] = arr[i] % 42; } for (int i = 0; i < 10; i++) { for (int j = 0; i < 10 j++) { if (arr[i] == arr[j]) cnt++; } if (cnt == 0) result++; } printf("%d", result); return 0; } 문제 : 두 자연수 A와 B가 있을 때, A%B는 A를 B로 나눈 나머지 이다. 예를 들어, 7, 14, 27, 38을 3으로 나눈 나머지는 1, 2, 0, 2이다. 수 10개를 입..
2020. 9. 23.
백준 2577 / 숫자의 개수 / C / *
#include int main(void) { int a, b, c; int arr[10]; int total; arr[10] = { 0 }; total = a * b * c; scanf("%d%d%d", &a, &b, &c); while (total != 0){ arr[total % 10]++; total = total / 10; } for(int i = 0; i < 10; i++){ printf("%d\n", arr[i]); } return 0; } 문제 : 세 개의 자연수 A, B, C가 주어질 때 A×B×C를 계산한 결과에 0부터 9까지 각각의 숫자가 몇 번씩 쓰였는지를 구하는 프로그램을 작성하시오. 예를 들어 A = 150, B = 266, C = 427 이라면 A × B × C = 150 × ..
2020. 9. 22.