1952: 求长方形面积 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){int a,s,d,f;cin >> s;cin >> a;d…… 题解列表 2023年12月05日 0 点赞 0 评论 103 浏览 评分: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
题解 1952: 求长方形面积 摘要:解题思路:考查长方形的周长和面积,整数类型,C语言基础知识注意事项:注意题目要求“C:”、“S:”参考代码:#include <stdio.h> int main() { int w,h; …… 题解列表 2024年10月25日 0 点赞 0 评论 100 浏览 评分:0.0
1952-求长方形面积(简洁) 摘要:```cpp #include using namespace std; int main() { int l,w; cin >>l >>w; cout …… 题解列表 2022年10月15日 0 点赞 0 评论 130 浏览 评分:0.0
求长方形面积-题解(C语言代码) 摘要:解题思路:注意事项:格式很重要参考代码:#include<stdio.h> #include<string.h> int main() { int a[2]; memset(a, 0…… 题解列表 2021年01月12日 0 点赞 0 评论 250 浏览 评分:0.0
编写题解 1952: 求长方形面积 摘要:解题思路:注意事项:参考代码://输入一个长方形的长和宽(整数),输出该长方形的周长C和面积S,要求格式如例(请注意打印“C:”、“S:”,使用半角冒号,参考样例输出)。 #include <std…… 题解列表 2023年01月01日 0 点赞 0 评论 92 浏览 评分: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
求长方形面积-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int a,b; scanf("%d%d",&a,&b); printf("C:%d\n",2*a+2*…… 题解列表 2020年08月03日 0 点赞 0 评论 218 浏览 评分:0.0
求长方形面积-题解(C语言代码) 摘要:解题思路:明白两点就好了面积:a*b周长:2 * (a + b)注意事项:输出格式中都要前缀”C/S:“,注意要大写参考代码:#include <stdio.h>int main(){ int a =…… 题解列表 2021年02月10日 0 点赞 0 评论 129 浏览 评分:0.0
求长方形面积-题解(Java代码) 摘要:# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,建议先阅读这篇文章了解一下Markdown的基本使用方法。** ## 实时预览、全屏显示 ![…… 题解列表 2019年12月18日 0 点赞 0 评论 1049 浏览 评分:0.0