//myfirst.cpp
#include
int main()
{
using namespace std;
cout << "C++ 세계로 오십시오. \n";
cout << "후회하지 않으실 겁니다!";
cout << endl;
cout << "The good, the";
cout << "Bad, ";
cout << "and the Ukulele";
cout << endl;
cout << "다음은 뭔데? \n";
}
이걸 한자로 친다고 생각하면 으으...
整數 主程序() // int main()의 변환 { 使用 命名空間 標準; // using namespace std; 輸出 << "C++ 世界へ來。" << 結束行; // cout << "C++ 세계로 오십시오." << endl; 輸出 << "不会後悔的!" << 結束行; // cout << "후회하지 않으실 겁니다!" << endl; 輸出 << "好,壞,和尤克裏裏" << 結束行; // cout << "The good, the Bad, and the Ukulele" << endl; 輸出 << "接下來是什麼?\n"; // cout << "다음은 뭔데?" << endl; 返回 0; // return 0; } 역시 gpt야
으악!