標題:
五則運算 (一)
[打印本頁]
作者:
tonyh
時間:
2017-8-30 18:03
標題:
五則運算 (一)
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10, y=3;
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;
}
複製代碼
作者:
蒙鎧柔
時間:
2017-8-30 18:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10, y=3;
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;
}
複製代碼
作者:
黃宇瑄
時間:
2017-9-6 17:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10,y=3;
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;
}
複製代碼
作者:
黃宇綸
時間:
2017-9-6 17:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=100, y=30;
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;
}
複製代碼
作者:
李沛昂
時間:
2017-9-6 17:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="李沛昂",school="龍華國小";
int age=9;
float h=125.3,w=21.2;
cout<<"我的大名:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年:"<<age<<"歲"<<endl;
cout<<"身高:"<<h<<"公分"<<endl;
cout<<"體重:"<<w<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李沛昂
時間:
2017-9-6 17:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10,y=3;
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;
}
複製代碼
作者:
黃宇綸
時間:
2017-9-6 17:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="黃宇綸",school="中山國小";
int age=9;
float h=125.5,w=23.3;
cout<<"我的大名: "<<name<<endl;
cout<<"就讀: "<<school<<endl;
cout<<"今年: "<<age<<"歲"<<endl;
cout<<"身高: "<<h<<"公分"<<endl;
cout<<"體重: "<<w<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2