《C程序设计(第五版)》谭浩强编著—习题—第三章
1.#include <stdio.h>#include <stdlib.h>#include <math.h>int main(){ int i,n = 10; float p, r = 0.07; p = pow((1 + r), n); printf("%f", p); return 0;}运行...