- #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;
- }
複製代碼 |