C++ 整数除法保留小数


#include  
#include 
using namespace std;
int main()
{
	int a,b;
	cin>>a>>b;
	int C = a / b;
	cout<

整数除法用 “/”的话得到的是一个整数(得到小数的话自动去掉小数位只保留整数位),

所以这里要得到实际除出来的数的话,先将两个数转化为double类型,再进行“/”除法至于要规定输出保留多少位小数,则用cout<……;其中2表示保留多少位小数(2表示两位)。同时要注意seprecision函数的使用要搭配头文件。关于头文件:
这个头文件是声明一些 “流操作符”的, 
比较常用的有: 
setw(int);//设置显示宽度。 
left//right//设置左右对齐。 
setprecision(int);//设置浮点数的精确度。
原文:https://blog.csdn.net/lv_victor/article/details/50087983 

#include
#include
using namespace std;
int main()
{
	//设置左对齐输出,空格在后
	cout << setiosflags(ios::left)
		<< setw(10) << 10 << endl
		<< setw(10) << 100 << endl
		<< setw(10) << 1000 << endl;

	//设置右对齐输出,空格在前
	cout << setiosflags(ios::right)
		<< setw(10) << 10 << endl
		<< setw(10) << 100 << endl
		<< setw(10) << 1000 << endl;
	getchar();
	return 0;
}

运行结果:

C++ 整数除法保留小数_第1张图片

 

 

你可能感兴趣的:(c++)