CodeUP] c언어 기초100제 1001~1010
2023. 8. 23. 11:30ㆍCODING/codeup [c]
320x100
1001
#include <stdio.h>
int main()
{
printf("Hello");
return 0;
}
1002
#include <stdio.h>
int main()
{
printf("Hello World");
return 0;
}
1003
#include <stdio.h>
int main()
{
printf("Hello\nWorld");
return 0;
}
1004
#include <stdio.h>
int main()
{
printf("\'Hello\'");
return 0;
}
1005
#include <stdio.h>
int main()
{
printf("\"Hello World\"");
return 0;
}
1006
#include <stdio.h>
int main()
{
printf("\"!@#$%^&*()\"");
return 0;
}
1007
#include <stdio.h>
int main()
{
printf("\"C:\\Download\\hello.cpp\"");
return 0;
}
1008
#include <stdio.h>
int main()
{
printf("\u250C\u252C\u2510\n");
printf("\u251C\u263C\u2524\n");
printf("\u2514\u2534\u2518");
}
1010
#include <stdio.h>
int main()
{
int n;
scanf("%d", &n);
printf("%d", n);
}
320x100
320x100
'CODING > codeup [c]' 카테고리의 다른 글
CodeUP] c언어 기초100제 1051~1060 (0) | 2023.08.23 |
---|---|
CodeUP] c언어 기초100제 1041~1050 (0) | 2023.08.23 |
CodeUP] c언어 기초100제 1031~1040 (0) | 2023.08.23 |
CodeUP] c언어 기초100제 1021~1030 (0) | 2023.08.23 |
CodeUP] c언어 기초100제 1011~1020 (0) | 2023.08.23 |