標題:
五則運算
[打印本頁]
作者:
王瑞喻
時間:
2021-2-1 15:09
標題:
五則運算
+ 加
- 減
* 乘
/ 除
% 取餘數
#include<iostream>
#include<cstdlib>
using namespace std;
int main() //int ---> integer 整數
{
int x=12,y=5; //宣告變數
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;
}
複製代碼
作者:
鄧崴仁
時間:
2021-2-1 15:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a
cout<<"您輸入的數字是"<<a<<endl;
system("pause")
return 0
{
複製代碼
作者:
李天輝
時間:
2021-2-1 15:34
#include <iostream>
#include <cstdlib>
using namespace std;
int main() {
int a;
int b;
cout << "a=";
cin >> a;
cout << "b=";
cin >> b;
cout << "a+b=" <<a+b<<endl ;
cout << "a-b=" <<a-b<<endl ;
cout << "a*b=" <<a*b<<endl ;
cout << "a/b=" <<a/b<<endl ;
cout << "a%b " <<a%b<<endl ;
}
複製代碼
作者:
方黃生
時間:
2021-2-2 09:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=58,y=9;
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;
}
複製代碼
作者:
蔡宜均
時間:
2021-2-2 09:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=23,y=7;
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;
}
複製代碼
作者:
黃昱凱
時間:
2021-2-2 10:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=23,y=7;
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;
}
複製代碼
作者:
任璿
時間:
2021-2-2 10:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=256,y=5;
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;
}
作者:
莊鈞宸
時間:
2021-2-2 10:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=12,y=5;
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;
}
複製代碼
作者:
何若晴
時間:
2021-2-2 10:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10,y=9;
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;
}
複製代碼
作者:
林昕霓
時間:
2021-2-2 10:08
回復
1#
王瑞喻
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=23,y=7;
cout<<"當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;
}
作者:
張鈊喬
時間:
2021-2-2 10:11
回復
1#
王瑞喻
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//五則運算
//int x;
//int y;
int x=23,y=7;
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;
作者:
莊念篪
時間:
2021-2-2 10:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=23,y=7;
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;
}
作者:
方凱聲
時間:
2021-2-2 10:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=32,y=6;
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;
}
複製代碼
作者:
吳亦勛
時間:
2021-2-2 10:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=23,y=7;
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;
}
複製代碼
作者:
張晏滕
時間:
2021-2-2 10:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
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;
}
複製代碼
作者:
李奕廷
時間:
2021-2-2 10:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{ int x124
int y;=12
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;
}
複製代碼
回復
1#
王瑞喻
作者:
王廷悠
時間:
2021-2-2 10:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//五則運算
//int x;
//int y;
int x=23,y=7;
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;
}
作者:
怡璇
時間:
2021-2-2 10:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//五則運算
//int x;
//int y;
int x=23,y=7;
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;
}
複製代碼
作者:
鄧崴仁
時間:
2021-2-2 10:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=23,y=7;
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;
}
複製代碼
作者:
陳仕約
時間:
2021-2-2 10:23
本帖最後由 陳仕約 於 2021-2-2 10:24 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=23,y=7;
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;
}
複製代碼
作者:
洪曼崴
時間:
2021-2-2 10:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=23,y=7;
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;
}
複製代碼
作者:
吳亦勛
時間:
2021-2-2 10:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=,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;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳亦勛
時間:
2021-2-2 10:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=,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;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
莊念篪
時間:
2021-2-2 10:53
#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<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
作者:
陳建承
時間:
2021-2-2 10:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=23,y=7;
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;
}
複製代碼
作者:
王偉樺
時間:
2021-2-2 13:18
#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<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2