標題:
基本的輸入與輸出
[打印本頁]
作者:
游東祥
時間:
2014-1-22 10:45
標題:
基本的輸入與輸出
[attach]812[/attach]
如圖,第一行讓使用者輸入一個數字。然後在第二行顯示剛才輸入的那個數字。如:"您輸入的數字是:10"
作者:
蔡維庭
時間:
2014-1-22 11:14
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a = 0;
cin >> a;
cout << "您輸入的數字是:" << a << endl;
system("pause");
cout << "碗洗乾淨了~" << endl;
system("pause");
return 0;
}
複製代碼
作者:
林宇翔
時間:
2014-1-22 11:14
本帖最後由 林宇翔 於 2014-1-22 11:26 編輯
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a = 15786548;
cin >> a;
cout <<"你輸入的數字是:"<< a <<endl;
system ("pause");
cout << "請再輸入一次喔~" << endl;
system ("pause");
cout << "加油!再輸入一次~" << endl;
system ("pause");
cout << "出了一點差錯,請再輸入一次~" << endl;
system ("pause");
cout << "對不起,你被騙了,再輸入一次~" << endl;
system ("pause");
cout << "無止境的再輸入一次~" << endl;
system ("pause");
cout << "就快結束了,再輸入一次~" << endl;
system ("pause");
cout << "結束了,請輸入最後一次~" << endl;
system ("pause");
cout << "告訴你一個秘密,請輸入一次" << endl;
system ("pause");
cout << "再輸入一次~" << endl;
system ("pause");
cout << "再輸入一次~" << endl;
system ("pause");
cout << "再輸入一次~" << endl;
system ("pause");
cout << "再輸入一次~" << endl;
system ("pause");
cout << "再輸入一次~" << endl;
system ("pause");
cout << "再輸入一次~" << endl;
system ("pause");
cout << "再輸入一次~" << endl;
system ("pause");
cout << "再輸入一次~" << endl;
system ("pause");
cout << "再輸入一次~" << endl;
system ("pause");
cout << "秘密就是~" << endl;
system ("pause");
cout << "再輸入一次!!!" << endl;
system ("pause");
cout << "秘密就是....你被騙了" << endl;
system ("pause");
return 0;
}
複製代碼
作者:
陳均
時間:
2014-1-22 11:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cin>>a;
cout<<"您輸入的數字是:"<<a<<endl ;
system("pause");
return 0;
}
複製代碼
作者:
李允軒
時間:
2014-1-22 11:15
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a = 23;
cin >> a;
cout <<"你輸入的數字是:" << a << endl;
system("pause");
return 0;
}
複製代碼
作者:
陳婉平
時間:
2014-1-22 11:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a = 1002;
cin >> a;
cout << "您輸入的數字是:" << a << endl;
system("pause");
return 0;
}
複製代碼
作者:
黃國清
時間:
2014-1-22 11:15
本帖最後由 黃國清 於 2014-1-22 11:17 編輯
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a;
cin>>a;
cout<<"你輸入的數字是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃詠軒
時間:
2014-1-22 11:16
#include <iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a = 0;
cin >> a;
cout << "您輸入的數字是:"<<a <<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉得恩
時間:
2014-1-22 11:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int o=0;
cin>>o;
cout<<"你輸入的數字是:"<< o<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉怡修
時間:
2014-1-22 11:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a =0;
cin >> a;
cout <<"你輸入的數字是 :"<< a <<endl;
system("pause");
return 0;
}
複製代碼
作者:
郭品君
時間:
2014-1-22 11:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=10;
cin>>a;
cout <<"您輸入的數字是:"<<a<<endl;
system("pause");
return 0;
}
作者:
任冠宇
時間:
2014-1-22 11:19
#include<iostream>
using namespace std;
int main()
{
int a=0;
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉芝均
時間:
2014-1-22 11:20
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a =100;
cin >> a;
cout <<"您輸入的數字是:"<< a <<endl;
system("pause");
return 0;
}
複製代碼
作者:
朱俐蒨
時間:
2014-1-22 11:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=10;
cin>>a;
cout<<"您輸入的數字是:"<<a<< endl;
system("pause");
return 0;
}
複製代碼
作者:
劉凱平
時間:
2014-1-22 11:23
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a = 0;
cin >> a;
cout << "您輸入的數字是: "<< a << endl;
system("pause");
return 0;
}
複製代碼
作者:
郭品君
時間:
2014-1-22 11:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=10;
cin>>a;
cout <<"您輸入的數字是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉凱平
時間:
2014-1-22 12:00
#include <iostream>
using namespace std;
int main()
{
int x =21;
int y =5;
cout<<"當 x = " <<x<< ",y = "<<"時:"<< endl;
cout << " x + y ="<< x+y <<endl;
cout << " x - y ="<< x-y <<endl;
cout << " x * y ="<< x*y <<endl;
cout << " x / y ="<< x/y <<endl;
cout << " x % y ="<< x%y <<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2