返回列表 發帖
回復 1# 王瑞喻


    #include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
   int a;
   cout<<"請輸入一個整數:";
   cin>>a;
   cout<<"您輸入的數字是"<<a<<endl;
   
   system("pause");  
   return 0;
}

TOP

返回列表