标签: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; }
标签:style blog color io div log c return
原文地址:http://www.cnblogs.com/z52527/p/3883888.html