top of page

게시판 게시물

kongjome
2021년 7월 06일
In 소스 코드 제출
/* #include <stdio.h> int main() { printf("Hello world!\n"); 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("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() { long long int a, b; scanf("%lld %lld", &a, &b); printf("%lld", a+b); return 0; } */ /* #include<stdio.h> int main() { long long int a, b; scanf("%lld %lld", &a, &b); printf("%lld", a+b); return 0; } */ /* #include<stdio.h> int main() { long long int a; scanf("%lld", &a); printf("%lld", -a); return 0; } */ /* 정수 int %d (-21~+21) long long int %lld 실수 부동소숫점 : 0.74 > 0.5 + 0.125 + ... + float(4:32) %f double(8:64) %lf > double < 문자 char %c (-128~+127) : alphabet */ /* #include<stdio.h> int main() { char a; scanf("%c", &a); printf("%c", a+1); } */ /* #include<stdio.h> int main() { long long int a, b; scanf("%lld %lld", &a, &b); printf("%lld", a/b); return 0; } */ /* #include<stdio.h> int main() { long long int a, b; scanf("%lld %lld", &a, &b); printf("%lld", a%b); return 0; } */ /* #include<stdio.h> int main() { long long int a; scanf("%lld", &a); printf("%lld", a+1); return 0; } */ /* #include<stdio.h> int main() { long long int a, b; scanf("%lld %lld", &a, &b); printf("%lld\n", a+b); printf("%lld\n", a-b); printf("%lld\n", a*b); printf("%lld\n", a/b); printf("%lld\n", a%b); printf("%.2lf", (double)a/b); return 0; } */ /* #include<stdio.h> int main() { long long int a, b, c; scanf("%lld %lld %lld", &a, &b, &c); printf("%lld\n", a+b+c); printf("%.1lf", (double)(a+b+c)/3); return 0; } */ /* #include<stdio.h> int main() { int x; x = 5; x = x+ 10; printf("%d", x); } */ /* #include<stdio.h> int main() { int a, b; scanf("%d %d", &a, &b); printf("%d", a>b); return 0; } */ /* #include<stdio.h> int main() { int a, b; scanf("%d %d", &a, &b); printf("%d", a==b); return 0; } */ /* #include<stdio.h> int main() { int a, b; scanf("%d %d", &a, &b); printf("%d", b>=a); return 0; } */ /* #include<stdio.h> int main() { int a, b; scanf("%d %d", &a, &b); printf("%d", a!=b); return 0; } */ /* #include<stdio.h> int main () { int a; scanf("%d", &a); printf("%d", !a); return 0; } */ /* #include<stdio.h> int main () { int a, b; scanf("%d %d", &a, &b); printf("%d", a&&b); return 0; } */ #include<stdio.h> int main() { int a, b; scanf("%d %d", &a, &b); printf("%d", a||b); return 0; }
0
0
3

kongjome

더보기
bottom of page