Files
information-processing-1_3r…/programs/prog5/main.c
2025-04-30 01:50:13 +09:00

13 lines
161 B
C

#include <stdio.h>
int main(void) {
int no;
printf("Input an integer: ");
scanf("%d", &no);
printf("You inputed %d.\n", no);
return 0;
}