帮我编C语言,谢谢…… 问题是:从键盘输入矩形的长和宽,计算矩形的周长和面积。
展开全部
#include <stdio.h>
int main()
{
double width;
double height;
printf("请输入矩形的长:");
scanf("%lf%*c", &height);
printf("请输入矩形的宽:");
scanf("%lf%*c", &width);
printf("矩形周长:%lf\n", 2 * (height + width));
printf("矩形面积:%lf\n", height * width);
return 0;
}
int main()
{
double width;
double height;
printf("请输入矩形的长:");
scanf("%lf%*c", &height);
printf("请输入矩形的宽:");
scanf("%lf%*c", &width);
printf("矩形周长:%lf\n", 2 * (height + width));
printf("矩形面积:%lf\n", height * width);
return 0;
}
--
2022-12-05 广告
2022-12-05 广告
图形化编程简单理解为用积木块形式编程,scratch和python也是其中的一种,属于入门级编程,以其简单生动的画面获得无数学生的喜爱,深圳市创客火科技有限公司是一家做教育无人机的公司,旗下有编程无人机,积木无人机及室内外编队,每款飞机含有...
点击进入详情页
本回答由--提供
展开全部
这个貌似应该自己写
#include<stdio.h>
void main()
{
float a,b;
scanf("%d %d",&a,&b);
printf("矩形的周长是%f",2*(a+b));
printf("矩形的面积是%f",a*b);
}
#include<stdio.h>
void main()
{
float a,b;
scanf("%d %d",&a,&b);
printf("矩形的周长是%f",2*(a+b));
printf("矩形的面积是%f",a*b);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2011-02-28
展开全部
#include<stdio.h>
int main()
{
float x,y;
printf("输入矩形的长和宽\n");
scanf("%f%f",&x,&y);
printf("周长为%f\n",2*(x+y));
printf("面积为%f\n",x*y);
return 0;
}
int main()
{
float x,y;
printf("输入矩形的长和宽\n");
scanf("%f%f",&x,&y);
printf("周长为%f\n",2*(x+y));
printf("面积为%f\n",x*y);
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Microsoft Windows XP [版本 5.1.2600]
(C) 版权所有 1985-2001 Microsoft Corp.
C:\Documents and Settings\Owner\桌面>type hello.c
/* * * * * * * * * * * * * * * * * * * * * * * * * *
编译平台 : Windows XP
程序作者 : veket_linux
编译器 : GCC 3.4.2
* * * * * * * * * * * * * * * * * * * * * * * * * */
#include <stdio.h>
int main(void)
{
double l;
double w;
double c;
double s;
printf("input the length and width:\n");
scanf("%lf%lf",&l,&w);
c = 2 * (l + w);
s = l * w;
printf("c = %lf, s = %lf\n",c,s);
getchar();
return 0;
}
C:\Documents and Settings\Owner\桌面>gcc hello.c -o hello.exe
C:\Documents and Settings\Owner\桌面>hello.exe
input the length and width:
2.5 5.3
c = 15.600000, s = 13.250000
C:\Documents and Settings\Owner\桌面>
(C) 版权所有 1985-2001 Microsoft Corp.
C:\Documents and Settings\Owner\桌面>type hello.c
/* * * * * * * * * * * * * * * * * * * * * * * * * *
编译平台 : Windows XP
程序作者 : veket_linux
编译器 : GCC 3.4.2
* * * * * * * * * * * * * * * * * * * * * * * * * */
#include <stdio.h>
int main(void)
{
double l;
double w;
double c;
double s;
printf("input the length and width:\n");
scanf("%lf%lf",&l,&w);
c = 2 * (l + w);
s = l * w;
printf("c = %lf, s = %lf\n",c,s);
getchar();
return 0;
}
C:\Documents and Settings\Owner\桌面>gcc hello.c -o hello.exe
C:\Documents and Settings\Owner\桌面>hello.exe
input the length and width:
2.5 5.3
c = 15.600000, s = 13.250000
C:\Documents and Settings\Owner\桌面>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <stdio.h>
int fun(int a,int b,int *x,int *y)
{
*x=(a+b)*2;
*y=a*b;
}
void main()
{
int a,b,l,s;
scanf("%d%d",&a,&b);
fun(a,b,&l,&s);
printf("l=%d,s=%d\n",l,s);
}
int fun(int a,int b,int *x,int *y)
{
*x=(a+b)*2;
*y=a*b;
}
void main()
{
int a,b,l,s;
scanf("%d%d",&a,&b);
fun(a,b,&l,&s);
printf("l=%d,s=%d\n",l,s);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询