返回列表 發帖

我的第一支程式

在螢幕上顯示 hello 字樣.
  1. #include<iostream>     //引入 <基本輸入輸出> 標頭檔 in & out stream
  2. #include<cstdlib>      //引入 <標準函式庫> 標頭檔 c standard library
  3. using namespace std;   //指定命名空間為 std
  4. int main()    //主函式
  5. {
  6.     cout<<"hello"<<endl;   //cout輸出  endl換行
  7.     system("pause");       //讓畫面暫停
  8.     return 0;              //回傳0到主控台,告知該程式已成功執行
  9. }
複製代碼

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.        cout<<"Hi"<<endl;
  7.        cout<<"下課了沒"<<endl;
  8.        system("pause");   
  9.        return 0;      
  10. }
複製代碼

TOP

  1. #inciude<iostream>
  2. #include<cstdlib>
  3. using namespaace std;
  4. int main()
  5. {
  6.           cout"hell"<<endl;
  7.           system   ("pause")
  8.           return0;
  9. ]
  10.          
  11.          
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()

  5. {
  6.     for(int i=1; i<=15; i++)
  7.          cout<<"李竑毅好帥!"<<endl;
  8.     for(int i=1; i<=15; i++)
  9.          cout<<"李竑毅超帥!"<<endl;
  10.    
  11.    
  12.    
  13.     system("pause");
  14.     system("cls");         
  15.     cout<<"是真的喔!"<<endl;
  16.     system("cls");
  17.     cout<<"是真的嗎?!"<<endl;
  18.     system("cls");
  19.     cout<<"相信我 Trust me"<<endl;
  20.    
  21.    
  22.     system("pause");
  23.     return 0;
複製代碼

TOP

本帖最後由 林峻安 於 2017-2-7 09:17 編輯
  1. #inciude<iostream>
  2. #include<cstdlib>
  3. using namespaace std;
  4. int main()
  5. {
  6.           cout"hell"<<endl;
  7.           system   ("pause")
  8.           return0;
  9. ]
複製代碼

TOP

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

TOP

#include<iostream>
#include<cstdlib>
using namespace std;
int main()

{
    for(int i=1; i<=15; i++)
         cout<<"李竑毅好帥!"<<endl;
    for(int i=1; i<=15; i++)
         cout<<"李竑毅超帥!"<<endl;
   
   
   
    system("pause");
    system("cls");
    cout<<"是真的嗎?!"<<endl;
    system("pause");
    system("cls");
    cout<<"相信我 Trust me"<<endl;
     system("pause");
    system("cls");
    for(int i=1; i>=0; i++)
    cout<<"(。_。)";
   
   
    system("pause");
    return 0;
}

TOP

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int x=23,y=7;
  7.    
  8.    cout<<"當x的質為"<<x<<",y的質為"<<y<<"時..."<<endl;
  9.    cout<<"x+y="<<x+y<<endl;
  10.    cout<<"x-y="<<x-y<<endl;
  11.    cout<<"x*y="<<x*y<<endl;
  12.    cout<<"x/y="<<x/y<<endl;
  13.    cout<<"x%y="<<x%y<<endl;
  14.    
  15.    system("pause");
  16.    return 0;
  17. }
複製代碼

TOP

返回列表