首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴scott_yun的代码贴全部
#include"stdio.h"
#include"math.h"
int main(void)
{
    int n,y;
    double r,s;
    scanf("%d%d%d",&n,&r,&y);
    s=n*pow(1+r,y);
    printf("Y年后的总产值是%f\n",s);
    getchar();
    return 0; 
}
阅读全部 | 2012年7月17日 15:21
1
scott_yun