/ 科创班 /

记录详情

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
# 状态 耗时 内存占用
#1 Wrong Answer 0ms 188.0 KiB

代码

#include <stdio.h>
#include <math.h>

int main()
{
    float n;
    scanf("%d", &n);
	printf("%.6lf",0.07 * pow((1 + 0.07), n));
	return 0;
}

信息

递交者
类型
自测
题目
3.1计算增长百分比
语言
C
递交时间
2018-10-26 00:17:42
评测时间
2018-10-26 00:17:42
评测机
分数
0
总耗时
0ms
峰值内存
188.0 KiB