返回列表 發帖
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int a;
    cout<<"輸入整數:";
    cin>>a;
    cout<<"你剛輸入數字:" <<a<<endl;
    system("pause");
    return 0;
}

TOP

返回列表