標題:
[隨堂測驗] 基本輸入輸出 (二)
[打印本頁]
作者:
tonyh
時間:
2017-2-3 15:18
標題:
[隨堂測驗] 基本輸入輸出 (二)
本帖最後由 tonyh 於 2017-2-3 15:41 編輯
試實作如下之執行畫面:
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x, y;
cout<<"輸入x: ";
cin>>x;
cout<<"輸入y: ";
cin>>y;
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;
}
複製代碼
作者:
吳宇翔
時間:
2017-2-3 15:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int y;
int x;
cout<<"x值為 ";
cin>>x;
cout<<"y值為 ";
cin>>y;
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;
}
複製代碼
作者:
吳冠叡
時間:
2017-2-3 15:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int y;
int x;
cout<<"x值為 ";
cin>>x;
cout<<"y值為 ";
cin>>y;
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;
}
作者:
吳尚謙
時間:
2017-2-3 15:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
int y;
cout<<"輸入x的值:";
cin >> x;
cout<<"輸入y的值:";
cin >> y;
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;
}
複製代碼
作者:
吳冠諺
時間:
2017-2-3 15:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
int y;
cout<<"輸入x的值:";
cin >> x;
cout<<"輸入y的值:";
cin >> y;
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;
}
複製代碼
作者:
柯識一
時間:
2017-2-3 15:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<< "請輸入x" ;
cin >>x ;
cout<<"輸入y";
cin >>y ;
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;
}
複製代碼
作者:
吳孟軒
時間:
2017-2-3 15:30
本帖最後由 吳孟軒 於 2017-2-3 15:34 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
int y;
cout<<"請輸入x"<<endl;
cin>>x;
cout<<"請輸入y"<<endl;
cin>>y;
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;
}
複製代碼
作者:
邵顯茗
時間:
2017-2-3 15:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>a;
cout<<"a="<<a<<endl;
cout<<"b="<<b<<endl;
if(a<b)
{
cout<<"a 大於 b"<<endl;
}
else if(a<b)
{
cout<<"a 小於b "<<endl;
}
else if(a<b)
{
cout<<"a 等於 b"<<endl;
}
system("pause");
return 0;}
複製代碼
作者:
邵顯茗
時間:
2017-2-3 15:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>a;
cout<<"a="<<a<<endl;
cout<<"b="<<b<<endl;
if(a<b)
{
cout<<"a 大於 b"<<endl;
}
else if(a<b)
{
cout<<"a 小於b "<<endl;
}
else if(a<b)
{
cout<<"a 等於 b"<<endl;
}
system("pause");
return 0;}
複製代碼
作者:
吳冠叡
時間:
2017-2-3 15:32
本帖最後由 吳冠叡 於 2017-2-3 15:36 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int y;
int x;
cout<<"x值為 ";
cin>>x;
cout<<"y值為 ";
cin>>y;
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;
}
複製代碼
作者:
呂亮逵
時間:
2017-2-3 15:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"設定x為:" ;
cin>>x ;
cout<<"設定y為:" ;
cin>>y ;
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;
}
複製代碼
作者:
莊晉安
時間:
2017-2-3 15:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
int y;
cout<<"輸入x的值:";
cin >> x;
cout<<"輸入y的值:";
cin >> y;
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;
}
複製代碼
作者:
曹瑈芠
時間:
2017-2-3 15:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
int z;
cout<<"輸入x的值: ";
cin>>x;
cout<<"輸入z的值: ";
cin>>z;
cout<<"x+z="<<x+z<<endl;
cout<<"x-z="<<x-z<<endl;
cout<<"x*z="<<x*z<<endl;
cout<<"x/z="<<x/z<<endl;
cout<<"x%z="<<x%z<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張閎鈞
時間:
2017-2-3 15:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int y;
int x;
cout<<"x值為 ";
cin>>x;
cout<<"y值為 ";
cin>>y;
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;
}
複製代碼
作者:
張凱婷
時間:
2017-2-3 15:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int y;
int x;
cout<<"輸入x的值";
cin>>x;
cout<<"輸入y的值";
cin>>y;
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