10/3
13/5=2.6
10%3=1
在C++怎麼四捨五入
#include<iostream> #include <cmath> using namesapce std; int main (){ double i=round(13.0/5); cout<<i<<endl; return 0; }
10/3
13/5=2.6
10%3=1
在C++怎麼四捨五入
#include<iostream> #include <cmath> using namesapce std; int main (){ double i=round(13.0/5); cout<<i<<endl; return 0; }