標題:
基本輸入輸出 (一)
[打印本頁]
作者:
陳品肇
時間:
2018-8-1 12:38
標題:
基本輸入輸出 (一)
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
傅臣嘉
時間:
2018-8-1 14:23
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃資尹
時間:
2018-8-1 14:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int goose;
cout<<"請輸入一整數:";
cin>>goose;
cout<<"你輸入的數字是"<<goose<<endl;
system("pause");
return 0;
}
複製代碼
作者:
湯郡一
時間:
2018-8-1 14:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入一整數:";
cin>>x;
cout<<"您輸入的數字是:"<<x<<endl;
system("pause");
return 0;
}
複製代碼
作者:
邱泰澄
時間:
2018-8-1 14:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int AllMax;
cout<<"請輸入一整數: ";
cin>>AllMax;
cout<<"你剛輸入的數是: "<<AllMax<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡睿紘
時間:
2018-8-1 14:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int z;
cout<<"輸入整數";
cin>>z;
cout<<"z是:"<<z<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳潔歆
時間:
2018-8-1 14:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數"<<endl;
cin>>a;
cout<<"你輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曾彥鈞
時間:
2018-8-1 14:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數";
cin>>a;
cout<<"您輸入的數字是"<<a<<endl ;
system("pause");
return 0;
}
複製代碼
作者:
曾宥承
時間:
2018-8-1 14:29
本帖最後由 陳品肇 於 2018-8-1 14:31 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
田宇任
時間:
2018-8-1 14:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0 ;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2