返回列表 發帖

我的第一支程式

在螢幕上顯示 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<<"大家好" <<endl;
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼

TOP

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>  
  3. using namespace std;
  4. int main()  
  5. {
  6. cout<<"天啊!!我好帥!!"<<endl;
  7.                         
  8. system("pause");

  9. return 0;
  10. }
複製代碼

TOP

  1. #include<iostream>
  2. #includej<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. cout<<"大家好"<<endl;

  7.                         

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

TOP

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. cout<<"大家好"<<endl;
  7. system("pause");
  8. return 0;   
  9.    

  10. }
複製代碼

TOP

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

TOP

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

TOP

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

  6.    
  7.    cout<<"I'm very handsome!"<<endl;
  8.    system("pause");
  9.    return 0;
  10.    
  11.    
  12. }
  13.    
複製代碼

TOP

回復 6# 洪翊展

TOP

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

  6.     cout<<"大家好.我是阿宇"<<endl;
  7.     system("pause");
  8.     return 0;

  9. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>  
  3. using namespace std;
  4. int main()  
  5. {
  6. cout<<"天啊!!我好帥!!"<<endl;
  7.                         
  8. system("pause");

  9. return 0;
  10. }
複製代碼

TOP

TOP

  1. #include<cstdlib>
  2. #include<iostream>
  3. using namespace std;
  4. int main()
  5. {
  6.      int a,b,c,d,e,f,g,h,i;
  7.      cout<<"請依序輸入三個數:";
  8.      cin>>a>>b>>c;
  9.      d = a>b?a:b;
  10.      e = d>c?d:c;
  11.      f = a>b?a:b;
  12.      g = d>c?d:c;
  13.      h = a>b?a:b;
  14.      i = d>c?d:c;
  15.       
  16.    
  17.    
  18.    
  19.    
  20.    
  21.       cout<<"三數中最大的數為: "<<e<<endl<<endl;
  22.       cout<<"三數中中間的數為: "<<d<<endl<<endl;
  23.       cout<<"三數中最小的數為: "<<f<<endl<<endl;
  24.    
  25.    
  26.     system("pause");
  27.     return 0;   
  28. }
複製代碼

TOP

返回列表