Board logo

標題: 五則運算 (一) [打印本頁]

作者: 鄭繼威    時間: 2023-11-29 05:35     標題: 五則運算 (一)

本帖最後由 鄭繼威 於 2023-12-6 19:03 編輯

+    加
-     減
*    乘
/     除(取商數)
%   取餘數


  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=10, y=3;
  7.     cout<<"當x等於"<<x<<", y等於"<<y<<"時..."<<endl;
  8.     cout<<"x+y="<<x+y<<endl;
  9.     cout<<"x-y="<<x-y<<endl;
  10.     cout<<"x*y="<<x*y<<endl;
  11.     cout<<"x/y="<<x/y<<endl;
  12.     cout<<"x%y="<<x%y<<endl;
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

作者: 李宗儒    時間: 2023-12-6 19:05

此帖僅作者可見




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2