// C02_3.cpp : 輸出設定 #include using namespace std; int main() { int g1 = 6677, g2 = 3399; cout << endl; //換行 cout << g1 <<" " << g2; //輸出二值 cout << endl; //換行 return 0; //跳出程式 }