码迷,mamicode.com
首页 > 其他好文 > 详细

算数表达式的练习

时间:2014-08-01 04:46:21      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   div   log   c   return   

c中各种运算符的实践

整形运算:

#include<stdio.h>
int main()
{
    printf("%d",1+2);
printf("%d",1*2);
printf("%d",1/2);
printf("%d",1-2); return 0; }

浮点数运算:

#include<stdio.h>
int main()
{

    printf("%f",5.0/8.0);

  //  printf("%f",5/8.0);

    return 0;
    }

带根式的运算:

#include<stdio.h>
#include<math.h>//计算算术平方根的函数在math.h中
int main()
{
    printf("%.8f",1+2*sqrt(3)/(5-0.1));//sqrt(x)计算x的算数平方根
    return 0;
    }

 

算数表达式的练习,布布扣,bubuko.com

算数表达式的练习

标签:style   blog   color   io   div   log   c   return   

原文地址:http://www.cnblogs.com/z52527/p/3883888.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!