标题:[讨论] 谁能告诉我这代码错在哪里啊
只看楼主
zsx369530691
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2007-10-13
 问题点数:0 回复次数:7 
[讨论] 谁能告诉我这代码错在哪里啊
#include <math.h>
#include<stdio.h>
main()
{
int n;
double rate;
double capital;
double deposit;
printf("Please enter rate, year, capital:");
scanf("%1f,%d,%1f", &rate, &n, &capital);
deposit = capital * pow(1+rate,n);
printf("deposit = %f\n", deposit);
}
我想用它算存款问题,但输出的不知是几进制的数字还带负号. 我用的是TC2.0
搜索更多相关主题的帖子: 代码 
2007-10-17 14:28
abin7230
Rank: 1
等 级:新手上路
帖 子:41
专家分:0
注 册:2007-10-17
得分:0 
scanf("%1f,%d,%1f", &rate, &n, &capital);把我加下划线的1改成L,输入时小写L与1相同,很难发现.

没有更高的理想,便在现实中堕落!
2007-10-17 19:22
zmzlx
Rank: 1
等 级:新手上路
帖 子:18
专家分:0
注 册:2007-10-16
得分:0 
#include <math.h>
#include<stdio.h>
main()
{
int n;
double rate;
double capital;
double deposit;
printf("Please enter rate, year, capital:");
scanf("%1f,%d,%1f", &rate, &n, &capital);/*scanf("%lf%d%lf", &rate, &n, &capital);*/
deposit = capital * pow(1+rate,n);
printf("deposit = %lf\n", deposit);
}
2007-10-18 08:53
baby66
Rank: 1
等 级:新手上路
帖 子:26
专家分:0
注 册:2007-10-16
得分:0 
printf("deposit = %f\n", deposit);
printf("deposit = %lf\n", deposit);
也许是这里
2007-10-18 09:17
gaoamining
Rank: 1
等 级:新手上路
帖 子:38
专家分:0
注 册:2007-10-17
得分:0 
#include <math.h>
#include<stdio.h>
main()
{
int n;
double rate;
double capital;
double deposit;
printf("Please enter rate, year, capital:");
scanf("%lf%d%lf", &rate, &n, &capital);
deposit = capital * pow(1+rate,n);
printf("deposit = %lf\n", deposit);
}

2007-10-18 09:57
ltdtfking
Rank: 1
等 级:新手上路
帖 子:31
专家分:0
注 册:2007-10-7
得分:0 
deposit = capital * pow(1+rate,n);这里是什么意思没看懂?
2007-10-18 13:38
Θ小鸟С
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2007-10-18
得分:0 
我不是学C的不清楚
2007-10-18 14:17
woshini_0155
Rank: 1
等 级:新手上路
帖 子:14
专家分:0
注 册:2007-9-19
得分:0 
我习惯用cout
2007-10-18 15:18



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




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

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