返回列表 發帖

[作業] 我愛C++

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

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

TOP

本帖最後由 許睿森 於 2012-8-6 11:58 編輯

附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

TOP

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

TOP

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

TOP

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

TOP

返回列表