c语言程序设计 请问 10 的 n 次方能用这样表示吗?
#include<stdio.h>main(){floata;intb;printf("想保留几位??:\n");scanf("%d",&b);printf("输入你要计...
#include <stdio.h>
main()
{
float a;int b;
printf("想保留几位??:\n");
scanf("%d",&b);
printf("输入你要计算的数字 :\n");
scanf("%f",&a);
a=a*(1.eb);
a=a+.5;
a=(int)a;
a=(float)a/(1.eb);
printf("四舍五入=%f\n",a);
} 展开
main()
{
float a;int b;
printf("想保留几位??:\n");
scanf("%d",&b);
printf("输入你要计算的数字 :\n");
scanf("%f",&a);
a=a*(1.eb);
a=a+.5;
a=(int)a;
a=(float)a/(1.eb);
printf("四舍五入=%f\n",a);
} 展开
3个回答
展开全部
1*10的n次方表示为1en。如1e-6表示1* 10^(-6),但要注意e后面只能给常量数字。不能给变量,const类型的变量也不行。当10的n次方n为变量时用pow函数(x的y次方表示为pow(x,y); ),用这个函数要用到#include<math.h>这个头文件。
#include <stdio.h>
#include <math.h>
void main()
{
const int x = 4;
float a;int b;
printf("想保留几位??:\n");
scanf("%d",&b);
printf("输入你要计算的数字 :\n");
scanf("%f",&a);
a=a*pow(10,b);
a=a+.5;
a=(int)a;
a=(float)a/pow(10,b);
printf("四舍五入=%f\n",a);
}
#include <stdio.h>
#include <math.h>
void main()
{
const int x = 4;
float a;int b;
printf("想保留几位??:\n");
scanf("%d",&b);
printf("输入你要计算的数字 :\n");
scanf("%f",&a);
a=a*pow(10,b);
a=a+.5;
a=(int)a;
a=(float)a/pow(10,b);
printf("四舍五入=%f\n",a);
}
展开全部
有两个函数可以实现,double pow(double x, double y),double pow10(int p)
下面是这两个函数的使用方法,个人建议用:pow10(n)
函数名: pow
功 能: 指数函数(x的y次方)
用 法: double pow(double x, double y);
程序例:
#include <math.h>
#include <stdio.h>
int main(void)
{
double x = 2.0, y = 3.0;
printf("%lf raised to %lf is %lf\n", x, y, pow(x, y));
return 0;
}
函数名: pow10
功 能: 指数函数(10的p次方)
用 法: double pow10(int p);
程序例:
#include <math.h>
#include <stdio.h>
int main(void)
{
double p = 3.0;
printf("Ten raised to %lf is %lf\n", p, pow10(p));
return 0;
}
下面是这两个函数的使用方法,个人建议用:pow10(n)
函数名: pow
功 能: 指数函数(x的y次方)
用 法: double pow(double x, double y);
程序例:
#include <math.h>
#include <stdio.h>
int main(void)
{
double x = 2.0, y = 3.0;
printf("%lf raised to %lf is %lf\n", x, y, pow(x, y));
return 0;
}
函数名: pow10
功 能: 指数函数(10的p次方)
用 法: double pow10(int p);
程序例:
#include <math.h>
#include <stdio.h>
int main(void)
{
double p = 3.0;
printf("Ten raised to %lf is %lf\n", p, pow10(p));
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
a=a*1.0e+b;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询