갓비니

코드잼 기초 100제 - 1006번(형식지정자),1007,1008,1010 본문

Programming/코딩 문제 풀이

코드잼 기초 100제 - 1006번(형식지정자),1007,1008,1010

갓비니 2021. 1. 18. 00:03

<1006번>

1006번

 

1
2
3
4
5
6
7
8
#include<iostream>
using namespace std;
 
int main()
{
    cout << "\"!@#$%^&*()\"";
        return 0;
}
cs

%출력 : %%

"출력 : \"

 

 

<1007번>

1007번

1
2
3
4
5
6
7
8
#include<iostream>
using namespace std;
 
int main()
{
    cout << "\"C:\\Download\\hello.cpp\"";
        return 0;
}
cs

 

<1008>

1008

 

1
2
3
4
5
6
7
8
9
10
#include<iostream>
using namespace std;
 
int main()
{
    cout << "\u250C\u252C\u2510\n";
    cout << "\u251C\u253C\u2524\n";
    cout << "\u2514\u2534\u2518\n";
        return 0;
}
cs

 

<1010번>

1010번

1
2
3
4
5
6
7
8
9
10
#include<iostream>
using namespace std;
 
int main()
{
    int n;
    cin >> n;
    cout << n;
    return 0;
}
cs

 

음.. 너무 심각하게 기초 문제라 다음 포스팅부턴 그래도 이것보단 덜 기초인걸 해야겠다 ㅠ ㅠㅠ