返回列表 發帖

第一支程式

  1. #include<iostream>      //呼叫我要使用的工具
  2. using namespace std;    //將工具放在工具箱  
  3. int main()     //主程式
  4. {     
  5.     cout <<"大家好! 這是小米寫的第一支C++程式!"<< endl;
  6.     system("pause");
  7.     return 0;   
  8. }
複製代碼

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     cout<<"what's your name?"<<endl<<"my name is Ray."<<endl
  6.     <<endl<<endl<<endl<<endl;
  7.    

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

TOP

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

TOP

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

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     cout <<"大家好!著是小米的第一支程式!"<< endl;
  6.     system("pause");
  7.     return 0;
  8. }
複製代碼

TOP

返回列表