顺序结构程序设计
输入一矩形的长和宽,计算该矩形的面积。
#include<stdio.h>
int main()
{
double length;
double width;
printf("Please enter the length of the rectangle:");
scanf("%lf",&length); //输入矩形的长
printf("Please enter the width of the rectangle:");
scanf("%lf",&width); //输入矩形的宽
printf("Rectangular area is:%lf\n",length*width); //计算矩形的面积并打印
return 0;
}
输入球的半径r,计算并输出球的体积。
#include<stdio.h>
#