c語言中如何用循環(huán)表示次方?
#include <stdio.h>
#include <math.h>
void main()
{
double pw;
int a=2 ;
pw=pow(a,10); //a的10次方
printf("%d^10=%g\n", a,pw );
}
c語言中如何用循環(huán)表示次方?
#include <stdio.h>
#include <math.h>
void main()
{
double pw;
int a=2 ;
pw=pow(a,10); //a的10次方
printf("%d^10=%g\n", a,pw );
}