标题:数据和c
只看楼主
feinai2007
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2018-2-28
结帖率:75%
已结贴  问题点数:10 回复次数:1 
数据和c
#include <stdio.h>
int main (void)
{
    float weight;
    float value;
   
    printf("Are you worth your weight in platinum?\n");
    printf("Lets check it out.\n");
    printf("please enter your weight in pounds :");
   
    scanf("%f,&weight");
    value=1700.0*weight*14.5833;
   
    printf("Your weihjt  in platinum is worth $%.4f.\n",value);
    printf("You are easily worth that! If platinum prices drop,\n");
    printf("eat ,more to maintain your value.\n");
   
    return 0;
   
}
控制台里只有前3行的英文是怎么回事?课本中说会出现一夜提示是什么的
搜索更多相关主题的帖子: 数据 float value printf 提示 
2018-03-05 20:13
吹水佬
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
等 级:版主
威 望:432
帖 子:10064
专家分:41463
注 册:2014-5-20
得分:10 
//scanf("%f,&weight");
scanf("%f",&weight);
2018-03-05 20:48



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-485009-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.110256 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved