代码】
#include<bits/stdc++.h> using namespace std; int main(){ cout<<5+2<<endl; cout<<5-2<<endl; cout<<5*2<<endl; cout<<5/2<<endl; cout<<5.0/2<<endl; cout<<10.0/5<<endl; return 0; }
【运算结果】
7 3 10 2 2.5 2
【总结】
C++中两个整数运算,结果一定是整数;eg:5/2=2,3/5=0
整数和小数或者小数和小数运算,得到小数.eg 5.0/2=2.5
特别的:10.0/5=2 两个数运算没有小数产生,那么就没有小数位。