1952: 求长方形面积 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<fstream>#include<algorithm>using namespace std;long long a…… 题解列表 2022年05月20日 0 点赞 0 评论 125 浏览 评分:0.0
编写题解 1952: 求长方形面积 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,s; scanf("%d%d",&a,&b); c = a*2 + b*2; s =…… 题解列表 2022年05月24日 0 点赞 0 评论 206 浏览 评分:0.0
简单输出易懂长方形面积 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a, b; int C; int S; scanf("%d %d", &a,&b); C = 2 * …… 题解列表 2022年06月22日 0 点赞 0 评论 151 浏览 评分: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 评论 469 浏览 评分:0.0
求长方形面积(C语言) 摘要: #include int main() { int a,b; scanf("%d %d",&a,&b); printf…… 题解列表 2022年07月13日 0 点赞 0 评论 256 浏览 评分:0.0
编写题解 1952: 求长方形面积 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a = 0, b = 0; scanf("%d %d", &a, &b); …… 题解列表 2022年07月28日 0 点赞 0 评论 153 浏览 评分:0.0
1952-求长方形面积(简洁) 摘要:```cpp #include using namespace std; int main() { int l,w; cin >>l >>w; cout …… 题解列表 2022年10月15日 0 点赞 0 评论 248 浏览 评分:0.0
编写题解 1952: 求长方形面积 摘要:解题思路:注意事项:参考代码://输入一个长方形的长和宽(整数),输出该长方形的周长C和面积S,要求格式如例(请注意打印“C:”、“S:”,使用半角冒号,参考样例输出)。 #include <std…… 题解列表 2023年01月01日 0 点赞 0 评论 157 浏览 评分:0.0
1952:求长方形面积 摘要:解题思路:表示两个变量,输出两个值注意事项:格式要正确哦,A B之间要有空格哒参考代码:#include<stdio.h>int main(){ int A,B; scanf("%d %d…… 题解列表 2023年01月07日 0 点赞 0 评论 150 浏览 评分:0.0
求长方形行面积问题,主要还是格式问题 摘要:注意事项: 1.输入的长和宽要在一行有空格隔开; 2.输出的周长和面积要是两行,且以C:和S:开头; 3.开头的C和S要是大写的,不然通不过…… 题解列表 2023年09月25日 0 点赞 0 评论 139 浏览 评分:0.0