標題:
五則運算
[打印本頁]
作者:
游東祥
時間:
2013-8-13 11:18
標題:
五則運算
#include <iostream> //引入輸出輸入的指令
#include <cstdlib> //引入C的標準函式
using namespace std; //使用標準函式庫命名空間
int main() //程式從 "main" 開始執行
{
int x;
int y;
x = 5;
y = 10;
cout << "目前X為:" << x << endl;
cout << "目前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; //程式執行正確
}
複製代碼
作者:
黃崇維
時間:
2013-8-13 11:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
int y;
x = 23;
y = 7;
cout<<"目前X為:"<<x<<endl;
cout<<"目前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;
}
複製代碼
作者:
蘇昱安
時間:
2013-8-13 11:18
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x;
int y;
x = 50;
y = 40;
cout<<"目前x為:"<<x<<endl;
cout<<"目前y為:"<<y<<endl;
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;
}
複製代碼
作者:
薛景謙
時間:
2013-8-13 11:20
#include<iostream> //引入輸出輸入
#include<cstdlib> //使用C的標準函式庫
using namespace std; //使用命名空間
int main() //開始執行程式
{
int x;
int y;
x = 1;
y = 9;
cout << "x=" << x << endl;
cout << "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; // 告訴程式運作正確
}
複製代碼
作者:
徐義翔
時間:
2013-8-13 11:27
#include <iostream> //引入輸出入指令
#include <cstdlib> //引入c語言標準函數
using namespace std; //使用標準函式庫命名空間
int main() //程式從"main'開始執行
{
int x;
int y;
x=1;
y=199;
cout <<"目前的x:" << x <<endl;
cout <<"目前的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; //告訴程式執行正確
}
複製代碼
作者:
徐義翔
時間:
2013-8-13 11:28
#include <iostream> //引入輸出入指令
#include <cstdlib> //引入c語言標準函數
using namespace std; //使用標準函式庫命名空間
int main() //程式從"main'開始執行
{
int x;
int y;
x=1;
y=199;
cout <<"目前的x:" << x <<endl;
cout <<"目前的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; //告訴程式執行正確
}
複製代碼
作者:
陳寧莉
時間:
2013-8-13 11:28
#include <iostream> //引入輸出.入的指令
#include <cstdlib> //引入c的標準函式
using namespace std; //使用標準函式庫命名
int main() //程式從"main"執行
{
int x;
int y;
x=178;
y=167;
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; //告訴程式執行正確
}
複製代碼
作者:
吳宗桓
時間:
2013-8-13 11:28
#include <iostream> //引入輸出輸入指令
#include <cstdlib> //引入c的語言 的標準函式
using namespace std; //用標準函式庫命名空間
int main() //程式從"main"開始執行
{
int x;
int y;
x=88;
y=64;
cout<<"目前x為:"<<x<<endl;
cout<<"目前y為:"<<y<<endl;
cout<<"相加結果:"<<x+y<<endl;
cout<<"相減結果:"<<x-y<<endl;
cout<<"相乘結果:"<<x*y<<endl;
cout<<"相除結果:"<<x/y<<endl;
cout<<"相取餘數結果:"<<x%y<<endl;
system("pause"); //讓程式暫停
return 0; //讓程式確認正確
}
複製代碼
作者:
黃崇維
時間:
2013-8-13 12:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
int y;
x = 23;
y = 7;
cout<<"目前X為:"<<x<<endl;
cout<<"目前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;
}
複製代碼
作者:
張峻瑋
時間:
2013-8-14 08:56
#include<iostream> //引入輸出輸入指令
#include<cstdlib> //引入C的標準函式
using namespace std; //使用標準函式庫命名空間
int main() //程式從 "main" 開始執行
{
int x;
int y;
x = 23;
y = 7;
cout<<"目前X為:"<<x<<endl;
cout<<"目前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 ; //程式執行正確
}
複製代碼
作者:
李恆
時間:
2013-8-14 08:58
#include <iostream> //引入輸出輸入的指令
#include <cstdlib> //引入C的標準函式
using namespace std; //使用標準函式庫命名空間
int main() //程式從 "main" 開始執行
{
int x;
int y;
x = 5;
y = 10;
cout << "目前X為:" << x << endl;
cout << "目前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; //程式執行正確
}
複製代碼
作者:
柯璟廷
時間:
2013-8-14 08:59
#include <iostream> //引入輸出輸入的指令
#include <cstdlib> //引入C的標準函式
using namespace std; //使用標準函式庫命名空間
int main() //程式從 "main" 開始執行
{
int x;
int y;
x = 5;
y = 10;
cout << "目前X為:" << x << endl;
cout << "目前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; //程式執行正確
}
作者:
施伯叡
時間:
2013-8-14 09:01
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x;
int y;
x = 12;
y = 9;
cout << "目前X為:" << x << endl;
cout << "目前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;
}
複製代碼
作者:
張彥承
時間:
2013-8-14 09:05
#include <iostream> //引入輸出輸入的指令
#include <cstdlib> //引入C的標準函式
using namespace std; //使用標準函式庫命名空間
int main() //程式從 "main" 開始執行
{
int x;
int y;
x = 5;
y = 10;
cout << "目前X為:" << x << endl;
cout << "目前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; //程式執行正確
}
複製代碼
作者:
蔡凱益
時間:
2013-8-14 09:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
int y;
x = 23;
y = 7;
cout<<"目前X為:"<<x<<endl;
cout<<"目前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;
}
複製代碼
作者:
林以諾
時間:
2013-8-14 09:17
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x;
int y;
x = 42;
y = 71;
cout<<"目前x為:"<<x<<endl;
cout<<"目前y為:"<<y<<endl;
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;
}
複製代碼
作者:
林以璿
時間:
2013-8-14 09:17
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x;
int y;
x = 81;
y = 95;
cout<<"目前x為:"<<x<<endl;
cout<<"目前y為:"<<y<<endl;
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;
}
複製代碼
作者:
張郁庭
時間:
2013-8-14 09:26
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x;
int y;
x=23;
y=7;
cout <<"目前x為:" << x <<endl;
cout <<"目前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;
}
複製代碼
作者:
周雍程
時間:
2013-8-14 09:26
#include <iostream> 輸出輸入//引入
#include <cstdlib> //引入C的標準函式
using namespace std; //命名空間
int main() //開始執行
{
int x ;
int y ;
x=23 ;
y=7 ;
cout<<"目前x為:"<< x<<endl;
cout<<"目前y為:"<< y<<endl;
system("pause"); //讓程式暫停
return 0; //告訴程式無誤
}
複製代碼
作者:
張郁偵
時間:
2013-8-14 10:35
#include <iostream> //引入輸出輸入的指令
#include <cstdlib> //引入c的標準函式
using namespace std; //引入c的標準函式庫命名空間
int main() //程式從開始執行
{
int x;
int y;
x=58;
y=61;
cout<<"目前x為"<<x<<endl;
cout<<"目前y為"<<y<<endl;
system("pause"); //讓程式暫停
return 0; //回報程式運作正確
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2