写着玩(java代码) 摘要: import java.util.Scanner; public class P1952 { public static void main(St…… 题解列表 2020年03月30日 0 点赞 0 评论 340 浏览 评分: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 评论 244 浏览 评分:0.0
求长方形面积-题解(C语言代码) 摘要:解题思路:注意事项:格式很重要参考代码:#include<stdio.h> #include<string.h> int main() { int a[2]; memset(a, 0…… 题解列表 2021年01月12日 0 点赞 0 评论 288 浏览 评分:0.0
求长方形面积-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<diost.h>int main(){int c,k;int C=0,S=0;scanf("%d%d",&c,&k);C=(c+k)*2;S=c*k;p…… 题解列表 2021年02月05日 0 点赞 0 评论 174 浏览 评分:0.0
求长方形面积-题解(C语言代码) 摘要:解题思路:明白两点就好了面积:a*b周长:2 * (a + b)注意事项:输出格式中都要前缀”C/S:“,注意要大写参考代码:#include <stdio.h>int main(){ int a =…… 题解列表 2021年02月10日 0 点赞 0 评论 163 浏览 评分: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 评论 174 浏览 评分: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 评论 281 浏览 评分:0.0
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 评论 105 浏览 评分: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 评论 311 浏览 评分: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 评论 120 浏览 评分:0.0