返回列表 發帖

比賽題目 (一)

在螢幕上顯示 "我愛C++" 字樣, 排列如下圖:
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.   cout<<"我愛"<<endl;
  6.   cout<<"c++"<<endl;
  7.   system("pause");
  8.   return 0;   
  9. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.    
  6.     cout<<"我愛"<<endl<<"C++" <<endl;
  7.      

  8.      system("pause");
  9.      return 0;   
  10. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     cout<<"我愛"<<endl;
  6.     cout<<"c++"<<endl;
  7.       
  8.     system("pause");  
  9.     return 0;
  10. }
複製代碼

TOP

  1. #include <iostream>

  2. using namespace std ;

  3. int main()
  4. {
  5. cout<<"我愛"<<endl;
  6. cout<<"C++"<<endl;

  7. system("pause");
  8. return 0;
  9. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     cout<<"我愛"<<endl;
  6.     cout<<"C++"<<endl;
  7.    
  8.     system("pause");
  9.     return 0;   
  10. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     cout<<"我愛"<<endl;
  6.     cout<<"C++"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     cout<<"我愛"<<endl;
  6.     cout<<"c++"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.      cout<<"我愛"<<endl;
  6.      cout<<"c++"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼

TOP

返回列表