標題:
基本輸入輸出
[打印本頁]
作者:
tonyh
時間:
2015-1-30 11:35
標題:
基本輸入輸出
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x; //宣告一整數型態的變數x,無初始值
cout<<"請輸入一整數: ";
cin>>x; //將值填入x變數
cout<<"您剛輸入的數字為: "<<x<<endl;
system("pause");
return 0;
}
複製代碼
作者:
翁證翔
時間:
2015-1-30 11:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鍾奕帆
時間:
2015-1-30 11:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入一整數:";
cin>>x;
cout<<"您輸入的數字是"<<x<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林廷翰
時間:
2015-1-30 11:39
[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]
作者:
吳翊民
時間:
2015-1-30 11:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入一整數: ";
cin>>x;
cout<<"您剛輸入數字為: "<<x<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曾筱文
時間:
2015-1-30 11:40
本帖最後由 曾筱文 於 2015-1-30 11:46 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x; //宣告一整數型態的變數x,無初始值
cout<<"請輸入一整數:";
cin>>x; //將值填入x變數
cout<<"您剛輸入的字為:"<<x<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳彥彰
時間:
2015-1-30 11:40
#include<iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a;
cin>>a;
cout<<"你輸的數字是" <<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
趙弘揚
時間:
2015-1-30 11:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入一個整數: ";
cin>>x;
cout<<"您輸入的數字是: "<<x<<endl;
system("pause");
return 0;
}
複製代碼
作者:
涂幸宸
時間:
2015-1-30 11:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入一整數:";
cin>>x;
cout<<"您剛才輸入的數字是"<<x<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許育樺
時間:
2015-1-30 11:41
#include<iostr+eam>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cin>> a;
coat<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
複製代碼
作者:
陳鈺晟
時間:
2015-1-30 11:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//基本的輸入與輸出
int x;
cin>>x;
cout<<"您輸入的數字是"<<x<<endl;
system("pause");
return 0;
}
複製代碼
作者:
朱霈芸
時間:
2015-1-30 11:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許博竣
時間:
2015-1-30 11:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
施正心
時間:
2015-1-30 11:43
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cin>>a;
cout<<"您剛輸入的數字為:"<< a<<endl;
system("pause");
return 0;
}
複製代碼
}
作者:
王翔
時間:
2015-1-30 11:43
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cin>>a;
cout<<"你輸入的數字是"<<a <<endl;
system("pause");
return 0;
}
複製代碼
作者:
許睿霖
時間:
2015-1-30 11:43
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許育樺
時間:
2015-1-30 11:43
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
複製代碼
作者:
沈子耕
時間:
2015-1-30 11:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入x=";
cin>>x;
cout<<"請輸入y=";
cin>>y;
cout<<"x是"<<x<<",y是"<<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<<"餘"<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳承勳
時間:
2015-1-30 11:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cin>>a;
cout<<""<<a<<endl;
system("pauce");
return 0;
}
複製代碼
作者:
黃璽安
時間:
2015-1-30 11:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cin>>a;
cout<<""<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
顏宇杰
時間:
2015-1-30 11:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"請輸入: ";
int a;
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
複製代碼
作者:
曾聖祐
時間:
2015-1-30 11:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入一整數: ";
cin>>x;
cout<<"您剛輸入的數字為: "<<x<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳思惟
時間:
2015-1-30 11:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入一個整數:";
cin>>x;
cout<<"您輸入的數字是:"<<x<<endl;
system("pause");
return 0;
}
複製代碼
作者:
沈子耕
時間:
2015-1-30 11:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y;
cout<<"請輸入x=";
cin>>x;
cout<<"請輸入y=";
cin>>y;
cout<<"x是"<<x<<",y是"<<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;
}
複製代碼
作者:
陳思惟
時間:
2015-1-31 09:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數:";
cin>>a;
cout<<"4nl4l4"<<a<<endl;
int b;
cout<<"請輸入另一個整數:";
cin>>b;
cout<<b<<endl;
int x=a,y=b;
cout<<"當x的值為"<<x<<",y的值為"<<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://seed.istak.org.tw/)
Powered by Discuz! 7.2