๋ฌธ์ ๋งํฌ : https://codeup.kr/problem.php?id=1001
*1001๋ฒ
#include <iostream>
using namespace std;
int main(){
cout<<"Hello";
};
*1002๋ฒ
#include <iostream>
using namespace std;
int main(){
cout << "Hello World";
}
*1003๋ฒ
#include <iostream>
using namespace std;
int main(){
cout<<"Hello\n"<<"World";
}
*1004๋ฒ
#include <iostream>
using namespace std;
int main(){
cout<<"'Hello'";
}
*1005๋ฒ
#include <iostream>
using namespace std;
int main(){
cout<<"\"Hello World\""; // ๋ฐ์ดํ๋ฅผ ์ถ๋ ฅํ ๋ \" ๋ก ์ฌ์ฉํ๋ฉด๋๋ค.
}
๋ฐ์ดํ๋ฅผ ์ถ๋ ฅํ ๋ \"๋ก ์ฌ์ฉํ๋ฉด ๋๋ค.
*1006๋ฒ
#include <iostream>
using namespace std;
int main(){
cout << "\"!@#$%^&*()\"" ;
}
*1007๋ฒ
// 1007๋ฒ
#include <iostream>
using namespace std;
int main(){
cout <<"\"C:\\Download\\hello.cpp\"";
}
// ๋ฐฑ์ฌ๋์๋ฅผ ํ๊ฐ ์ถ๋ ฅํ ๋ ๋๋ฒ ์
๋ ฅํด์ผํ๋ค. \\
*ํ์ด์ฌ ํ์ด๋ code up ์นดํ
๊ณ ๋ฆฌ์ ์์ต๋๋ค.