输出长方形的 长 宽 高 和 面积

 1 //输出长方形的 长 宽 高   和 面积
 2 
 3 #include <stdio.h>
 4 int main ()
 5 {
 6      float high = 1.23f;
 7      float width = 4.23f;
 8      float lengh = 5.56f;
 9 
10      float ice = high*width*lengh;
11      printf("长方形的高为:%.3f\n宽为:%.2f\n%.2f:是长方形的长\n",high,width,lengh);
12      printf("面积为:%.2f\n",ice);
13      return  0 ;
14 }

 

posted on 2021-07-28 12:32  Bytezero!  阅读(232)  评论(0编辑  收藏  举报