c语言:如何输出或输入小数点数字
答案:6 悬赏:60 手机版
解决时间 2021-03-23 20:44
- 提问者网友:风月客
- 2021-03-23 12:33
c语言:如何输出或输入小数点数字
最佳答案
- 五星知识达人网友:时间的尘埃
- 2021-03-23 13:32
首先你的定义一个浮点数变量,定义方法: float xxx;
然后输出的时候使用%f格式 printf(“%f”,xxx);
然后输出的时候使用%f格式 printf(“%f”,xxx);
全部回答
- 1楼网友:刀戟声无边
- 2021-03-23 17:49
你用一个float类型的变量去接收,然后输出那个float就好了嘛。
- 2楼网友:刀戟声无边
- 2021-03-23 16:23
举个简单的例子吧
#include
main()
{float a,b,c;
scanf("%f%f",&a,&b);
c=a+b;
printf("%f",c);
}
#include
main()
{float a,b,c;
scanf("%f%f",&a,&b);
c=a+b;
printf("%f",c);
}
- 3楼网友:往事隔山水
- 2021-03-23 15:35
变量声明成double,输入输出的时候用%f.
- 4楼网友:孤独的牧羊人
- 2021-03-23 14:50
将%d都换成%g
scanf语句中再加一个逗号
scanf("%d",&a);
scanf语句中再加一个逗号
scanf("%d",&a);
- 5楼网友:鱼忧
- 2021-03-23 14:24
#include
#include
int main()
{
float a,max;
int i=1;
printf("please input 4 integers: ");
scanf("%g",&max);
while(i++ < 4){
scanf("%g",&a);
if(a>max) max = a;
}
printf("max num is : %g\n",max);
system("pause");
}
#include
int main()
{
float a,max;
int i=1;
printf("please input 4 integers: ");
scanf("%g",&max);
while(i++ < 4){
scanf("%g",&a);
if(a>max) max = a;
}
printf("max num is : %g\n",max);
system("pause");
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯