[求助]求助~~~急需N的M次方的程序代码 !!
那位高人帮小弟一把 !!!!!!!!!!!!!!急需啊~~~~~~~~~~~~~~~[此贴子已经被作者于2005-4-25 7:24:41编辑过]

欢迎加入C语言QQ群698156
我们都是菜鸟乃至新手
坚信有一天定能展翅高飞 因为有着努力的决心
衷心盼望你的到来 让我们一起进步 //不知道你说的是不是这个意思 //求助~~~急需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); }

