top of page

게시판 게시물

seohye0823
2021년 4월 01일
In 소스 코드 제출
/* #include<stdio.h> int main() { printf("Hello World"); 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 n, m; // 정수를 담는 변수의 이름은 n이다. // n = 5; // 대입연산자 scanf("%d %d", &n, &m); printf("%d", n-m); return 0; } */ #include<stdio.h> int main() { int n; scanf("%d",&n); printf("%d",n); return 0; } // seohye0823
0
0
1

seohye0823

더보기
bottom of page