C语言之求长方形的面积 摘要:解题思路:简单的两个数学公式,长方形的周长以及面积公式注意事项:注意C与S要用半角冒号输出参考代码:#include<stdio.h>int main(){ int a,b; int C,S; …… 题解列表 2021年05月03日 0 点赞 0 评论 735 浏览 评分:6.5
简单代码易理解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,C,S; scanf("%d %d",&a,&b); printf("C:%d\nS:%d",…… 题解列表 2021年08月11日 0 点赞 0 评论 136 浏览 评分:0.0
Ikaros-1952: 求长方形面积 Python解决 摘要:解题思路:使用format、map函数参考代码:number = list(map(int,input().split()))C = int((number[0] + number[1]) * 2)S…… 题解列表 2021年09月18日 0 点赞 0 评论 242 浏览 评分:0.0
长方形面积 求解 摘要:```c #include int main() { int a,b; int C=0,S=0; scanf("%d%d",&a,&b); C=2*(a+b); S…… 题解列表 2021年10月25日 0 点赞 13 评论 1610 浏览 评分:9.9
1952 C语言 666 good 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int C,S, a,b; scanf("%d %d",&a,&b); C=(a+b)*2;S=a*b…… 题解列表 2021年11月01日 0 点赞 0 评论 82 浏览 评分:0.0
求长方形正方形的面积和周长 摘要:解题思路:通过公式求解注意事项:基本知识的应用参考代码:#include<stdio.h>int main(){ int a,b,C,S; scanf("%d%d",&a,&b); C=2*a+2*b…… 题解列表 2021年11月02日 0 点赞 0 评论 282 浏览 评分:0.0
求长方形面积题解 摘要:解题思路:easy注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d%d",&a,&b); printf("C:%d\nS:%d\…… 题解列表 2022年01月25日 0 点赞 0 评论 88 浏览 评分:0.0
求长方形面积 摘要:#include<stdio.h>/*(长+宽)*2=周长 长*宽=面积*/int main(){int c,k;//定义长方形长变量为c,宽为变量kint C=0,S=0;//定义周长变量为C和…… 题解列表 2022年02月25日 0 点赞 2 评论 922 浏览 评分:9.9
求长方形面积 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float A,B,C,S; scanf("%f%f",&A,&B); C=2*(A+B); …… 题解列表 2022年04月05日 0 点赞 0 评论 351 浏览 评分:6.0
编写题解 1952: 求长方形面积 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int A,B; scanf("%d %d",&A,&B); printf("C:%d\n…… 题解列表 2022年04月06日 0 点赞 0 评论 197 浏览 评分:0.0