標題:
四則運算(一)
[打印本頁]
作者:
歐柏罕
時間:
2017-11-11 16:10
標題:
四則運算(一)
#include<iostream> //輸入輸出
#include<cstdlib> //函式庫
using namespace std;
int main()
{
cout << "1+1= " << 1+1 << endl; //字串 要用""包起來 如果要加上其他輸出的內容 <<
//"字串" 印出一模一樣的字
// 1+1 印出運算的值
cout << "2-1= " << 2-1 << endl;
cout << "4*6= " << 4*6 << endl;
cout << "4/2= " << 4/2 << endl;
cout << "7除以5的餘數是 " << 7%5 << endl; //取餘數
// 7/5 =1..2(餘數)
system("pause");
return 0;
}
複製代碼
作者:
戴嘉禾
時間:
2017-11-11 16:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout << "1+1= " << 1+1 << endl;
cout << "2-1= " << 2-1 << endl;
cout << "4*6= " << 4*6 << endl;
cout << "4/2= " << 4/2 << endl;
cout << "7%5= " << 7%5 << endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡佳承
時間:
2017-11-11 16:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"1+1="<<1+1<<endl;
cout<<"2-1="<<2-1<<endl;
cout<<"4*6="<<4*6<<endl;
cout<<"4/2="<<4/2<<endl;
cout<<"7除以5的餘數是"<<7%5<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃安立
時間:
2017-11-11 16:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout << "1+1= " << 1+1 << endl;
cout << "2-1= " << 2-1 << endl;
cout << "4*6= " << 4*6 << endl;
cout << "4/2= " << 4/2 << endl;
cout << "7/5 " << 7%5 << endl;
system("pause");
return 0;
}
複製代碼
作者:
佳
時間:
2017-11-11 16:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"1+1="<<1+1<<endl;
cout<<"2-1="<<2-1<<endl;
cout<<"4*6="<<4*6<<endl;
cout<<"4/2="<<4/2<<endl;
cout<<"7%5="<<7%5<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃安立
時間:
2017-11-11 16:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout << "1+1= " << 1+1 << endl;
cout << "2-1= " << 2-1 << endl;
cout << "4*6= " << 4*6 << endl;
cout << "4/2= " << 4/2 << endl;
cout << "7/5=" << 7%5 << endl;
system("pause");
return 0;
}
複製代碼
作者:
顏可昕
時間:
2017-11-11 16:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"2-1="<<2-1<<endl;
cout<<"1+1="<<1+1<<endl;
cout<<"4*6="<<4*6<<endl;
cout<<"4/2="<<4/2<<endl;
cout<<"7%5="<<7%5<<endl;
system("pause");
return 0;
}
複製代碼
作者:
顏可晴
時間:
2017-11-11 16:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"1+1="<<1+1<<endl;
cout<<"2-1="<<2-1<<endl;
cout<<"4*6="<<4*6<<endl;
cout<<"4/2="<<4/2<<endl;
cout<<"7除以5的餘數是"<<7%5<<endl;
system("pause");
return 0;
}
複製代碼
作者:
顏詢
時間:
2017-11-11 16:45
int main()
{
cout<<"1+1"<<1+1<<endl;
cout<<"2-1"<<2-1<<endl;
cout<<"4*6"<<4*6<<endl;
cout<<"4/2"<<4/2<<endl;
cout<<"7/5的餘數是"<<7%5<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2