返回列表 發帖
[code][/co#include<iostream>
#include<cstdilb>
using namespace std;
int main()
{   
    int x;   //宣告一整數型態的變數x,無初始值

    cout<<"請輸入一整數: ";

    cin>>x;  //將值填入x變數

    cout<<"您剛輸入的數字為: "<<x<<endl;

    system("pause");
    return 0;   
} de]

TOP

返回列表