top of page

게시판 게시물

110512shs
2021년 5월 19일
In 소스 코드 제출
/* f9 -> 컴파일 ; 세미콜론 명령의 끝에 꼭 붙여야 한다. #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("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; } #include <stdio.h> int main() { int a; //정수를 담을 수 있는 a 상자를 만들어라 scanf("%d",&a); //a상자에 정수를 입력받아라 printf("%d",a); //a상자에 있는 정수를 출력해라 return 0; } #include <stdio.h> int main() { int a; scanf("%d",&a); printf("%d",a); return 0; } #include <stdio.h> int main() { char a; scanf("%c",&a); printf("%c",a); return 0; } */ #include <stdio.h> int main() { float x; scanf("%f",&x); printf("%f",x); return 0; }
0
0
2

110512shs

더보기
bottom of page