返回列表 發帖

第一支程式

本帖最後由 tonyh 於 2011-10-5 13:45 編輯
  1. #include<iostream>      //呼叫我要使用的工具
  2. using namespace std;   //將工具放在工具箱  
  3. int main()     //主程式
  4. {     
  5.     cout <<"Hello! My name is Tony!"<< endl;
  6.     system("pause");
  7.     return 0;   
  8. }
複製代碼

#include<iostream>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入x的質:";
cin>>x;
cout<<"請輸入y的質:";
cin>>y;
cout<<"x的質:"<<x<<endl;
cout<<"y的質:"<<y<<endl;
system("pause");
return 0;
}

TOP

#include<iostream>
using namespace std;
int main()
{  
     int x, y;
     cout<<"請輸入x的值:";
     cin>>x;
     cout<<"請輸入y的值:";
     cin>>y;
     cout<<"x的值"<<x<<endl;
     cout<<"x的值"<<x<<endl;
     system("pause");
     return 0;
}
  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {  
  5.      int x, y;
  6.      cout<<"請輸入x的值:";
  7.      cin>>x;
  8.      cout<<"請輸入y的值:";
  9.      cin>>y;
  10.      cout<<"x的值"<<x<<endl;
  11.      cout<<"x的值"<<x<<endl;
  12.      system("pause");
  13.      return 0;
  14. }
複製代碼

TOP

#include<iostream>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入x的質:";
cin>>x;
cout<<"請輸入y的質:";
cin>>y;
cout<<"x的質:"<<x<<endl;
cout<<"y的質:"<<y<<endl;
system("pause");
return 0;
}

TOP

返回列表