返回列表 發帖
  1. #include<iostream>  //
  2. #include<cstblib>   //
  3. using namespace std;  //
  4. int main() //主函式   //
  5. {   //
  6.       cout<<"475454556";   //  
  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=1,y=1;
  7.        cout<<"當y的值為"<<y<<",x的值為"<<x<<"時"<<endl;
  8.        cout<<"y+x"<<x+y<<endl;

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

TOP

返回列表