728x90
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #include <stdio.h> int main() { char name[20], code[10]; int age; float key; int i; scanf("%s",&name); scanf("%d",&age); scanf("%s",&code); scanf("%f",&key); printf("%s\n",name); printf("%d\n",age); printf("%s\n",code); printf("%g", key); } | cs |
728x90
'Study > code up' 카테고리의 다른 글
[codeup] 1111 : %출력 (0) | 2020.05.01 |
---|---|
[codeup] 1110 : 정수 그대로 출력하기 (0) | 2020.05.01 |
[codeup] 1108 : 반복 출력하기 2 (0) | 2020.05.01 |
[codeup] 1107 : 반복 출력하기 1 (0) | 2020.05.01 |
[codeup] 1102 : Hello, World! (줄 바꿈 버전) (0) | 2020.04.29 |