1952:求长方形面积 摘要:解题思路:表示两个变量,输出两个值注意事项:格式要正确哦,A B之间要有空格哒参考代码:#include<stdio.h>int main(){ int A,B; scanf("%d %d…… 题解列表 2023年01月07日 0 点赞 0 评论 72 浏览 评分:0.0
编写题解 1952: 求长方形面积 摘要:解题思路:注意事项:参考代码://输入一个长方形的长和宽(整数),输出该长方形的周长C和面积S,要求格式如例(请注意打印“C:”、“S:”,使用半角冒号,参考样例输出)。 #include <std…… 题解列表 2023年01月01日 0 点赞 0 评论 92 浏览 评分:0.0
求长方形面积(C++) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<…… 题解列表 2022年11月03日 0 点赞 0 评论 436 浏览 评分:9.3
1952-求长方形面积(简洁) 摘要:```cpp #include using namespace std; int main() { int l,w; cin >>l >>w; cout …… 题解列表 2022年10月15日 0 点赞 0 评论 130 浏览 评分:0.0
编写题解 1952: 求长方形面积 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a = 0, b = 0; scanf("%d %d", &a, &b); …… 题解列表 2022年07月28日 0 点赞 0 评论 100 浏览 评分:0.0
求长方形面积(C语言) 摘要: #include int main() { int a,b; scanf("%d %d",&a,&b); printf…… 题解列表 2022年07月13日 0 点赞 0 评论 195 浏览 评分:0.0
1952——————求长方形的面积 摘要: a,b = map(int,input().split()) print('C:{}'.format(a*2+b*2)) print('S:{}'.format(a*b))…… 题解列表 2022年07月08日 0 点赞 0 评论 291 浏览 评分: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 评论 86 浏览 评分: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 评论 149 浏览 评分:0.0
1952: 求长方形面积 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<fstream>#include<algorithm>using namespace std;long long a…… 题解列表 2022年05月20日 0 点赞 0 评论 63 浏览 评分:0.0