[求助]求助~~~急需N的M次方的程序代码 !!
那位高人帮小弟一把 !!!!!!!!!!!!!!急需啊~~~~~~~~~~~~~~~[此贴子已经被作者于2005-4-25 7:24:41编辑过]
//不知道你说的是不是这个意思 //求助~~~急需N的M次方的程序代码 !!
#include <stdio.h> #include <math.h>
void main() { double N,M; double total; printf("please enter the two num \" N \" and \" M \" : \n"); scanf("%lf %lf", &N ,&M); fflush(stdin); total=pow(N,M); printf("The resule is : %lf\n",total); }