Compile Error
/in/foo.c: In function 'main':
/in/foo.c:5:1: error: unknown type name 'Float'
 Float p,r,n;
 ^~~~~
/in/foo.c:9:12: warning: format '%f' expects argument of type 'double', but argument 2 has type 'int' [-Wformat=]
 printf("p=%f\n",p);
            ^
  代码
#include <stdio.h>
#include <math.h>
int main()
{
Float p,r,n;
r=0.1;
n=10;
p=pow(1+r,n);
printf("p=%f\n",p);
return 0;
}
      信息
- 递交者
 - 类型
 - 递交
 - 题目
 - 3.1计算增长百分比
 - 题目数据
 - 下载
 - 语言
 - C
 - 递交时间
 - 2018-10-17 19:11:50
 - 评测时间
 - 2018-10-17 19:11:50
 - 评测机
 
- 分数
 - 0
 - 总耗时
 - 0ms
 - 峰值内存
 - 0 Bytes