摘要: 1.宏定义 1 #include<stdio.h> 2 #define PI 3.1415 3 int main() 4 { 5 float r,v,s; 6 printf("球的半径为:"); 7 scanf("%f",&r); 8 v=4.0/3*PI*r*r*r; 9 s=4*PI*r*r; 阅读全文
posted @ 2020-06-22 20:48 第厘 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 1 #include<stdio.h> 2 #include<math.h> 3 int main() 4 { 5 float a,b,c,x,y; 6 printf("请输入a,b,c:\n"); 7 scanf("%f%f%f",&a,&b,&c); 8 x=-b/2*a; 9 y=sqrt(b 阅读全文
posted @ 2020-06-22 20:29 第厘 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 1 #include<stdio.h> 2 #define rate 0.0225 3 int main() 4 { 5 float capital;//存款本金 6 int n;//存款期 7 float deposit;//本利之和 8 printf("存款本金为:"); 9 scanf("%f 阅读全文
posted @ 2020-06-22 20:05 第厘 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 1 #include<stdio.h> 2 #include<math.h> 3 int main() 4 { 5 int a;//3位整数 6 int b;//百位数 7 int c;//十位数 8 int d;//个位数 9 int n;//逆序数 10 printf("请输入一个3位整数:\n 阅读全文
posted @ 2020-06-22 19:50 第厘 阅读(443) 评论(0) 推荐(0) 编辑