1952: 求长方形面积
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,b;int main(){ cin>>a>>b; cout<……
编写题解 1952: 求长方形面积
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int A,B; scanf("%d %d",&A,&B); printf("C:%d\n……
求长方形正方形的面积和周长
摘要:解题思路:通过公式求解注意事项:基本知识的应用参考代码:#include<stdio.h>int main(){ int a,b,C,S; scanf("%d%d",&a,&b); C=2*a+2*b……
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……