Study/code up
[codeup] 1082 : [기초-종합] 16진수 구구단?
1nfra
2019. 7. 24. 04:14
728x90
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #include <stdio.h> int main() { int n, i; scanf("%X", &n); for (i = 1;i <16;i++) { printf("%X*%X=%X\n", n, i, n*i); } return 0; } | cs |
728x90