Wrong Answer
/in/foo.c: In function 'main': /in/foo.c:7:13: warning: format '%d' expects argument of type 'int *', but argument 2 has type 'float *' [-Wformat=] scanf("%d", &n); ~^ ~~ %e
代码
#include <stdio.h>
#include <math.h>
int main()
{
float n;
scanf("%d", &n);
printf("%.6f",0.07 * pow((1 + 0.07), n));
return 0;
}
信息
- 递交者
- 类型
- 自测
- 题目
- 3.1计算增长百分比
- 语言
- C
- 递交时间
- 2018-10-26 00:17:36
- 评测时间
- 2018-10-26 00:17:36
- 评测机
- 分数
- 0
- 总耗时
- 1ms
- 峰值内存
- 188.0 KiB