Algorithm/CodeUp
1155 : 7의 배수
B2SIC
2019. 4. 21. 20:22
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #include <stdio.h> int main() { int n; scanf("%d", &n); if (n % 7 == 0){ printf("multiple"); }else{ printf("not multiple"); } return 0; } | cs |