上一页 1 ··· 28 29 30 31 32
摘要: 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 第厘 阅读(284) 评论(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 ··· 28 29 30 31 32