#include <stdio.h>
#define LINE 9
#define ROW 9
int main(void) {
int n, i;
/*titleの表示*/
printf("* * * 九九の表 * * *\n | 1 2 3 4 5 6 7 8 9\n---------------------------------\n");
for (n = 1; n <= LINE; n++) {
printf(" %d | ", n);
for (i = 1; i <= ROW; i++) {
printf("%3d", n * i);
}
printf("\n");
}
return 0;
}
More than 5 years have passed since last update.
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme