其他分享
首页 > 其他分享> > 2.从键盘输入两个正整数,输出这两个整数的商,要求商的小数点后保留5位。例如输入355和113,输出3.14159。

2.从键盘输入两个正整数,输出这两个整数的商,要求商的小数点后保留5位。例如输入355和113,输出3.14159。

作者:互联网

题目:从键盘输入两个正整数,输出这两个整数的商,要求商的小数点后保留5位。例如输入355和113,输出3.14159。

程序:

#include<stdio.h>
void main()
{
	int a, b;
	float t;
	printf("请输入两个正整数:");
	scanf_s("%d%d", &a, &b);
	t = (float)a / (float)b;
	printf("这两个正整数的商为%.5f", t);

}

结果:

标签:输出,两个,float,355,3.14159,113,正整数
来源: https://blog.csdn.net/qq_41196921/article/details/100557370