top of page

게시판 게시물

chunjunwon11
2023년 1월 28일
In 소스 코드 제출
/* #include <stdio.h> int main() { printf("Hello"); return 0; } */ /*#include <stdio.h> int main() { printf("Hello"); return 0; } */ /*#include <stdio.h> int main() { printf("Hello\nWorld"); return 0; } #include <stdio.h> int main() { printf("\'Hello\'"); return 0; } */ /* #include <stdio.h> int main() { printf("\"Hello World\"") return 0; } */ /* #include <stdio.h> int main() { printf("\"!@#$%%^&*()\""); return 0; } */ /* #include <stdio.h> int main() { printf("\"C:\\Download\\hello.cpp\""); return 0; } */ /* *******자료형******* 정수 inf %d 실수 float %f 문자 char %c ******************* */ /* #include <stdio.h> int main() { char x; scanf("%c",&x); printf("%c",x); return 0; } */ /* #include <stdio.h> int main() { float x; scanf("%f",&x); printf("%f",x); return 0; } */ /* #include <stdio.h> int main() { int a,b; scanf("%d %d",&a,&b); printf("%d %d",a,b); return 0; } */ /* #include <stdio.h> int main() { char x,y; scanf("%c %c",&x,&y); printf("%c %c",y,x); return 0; }
0
1
3

chunjunwon11

더보기
bottom of page