题解 1952: 求长方形面积

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

长方形面积 求解

摘要:```c #include int main() { int a,b; int C=0,S=0; scanf("%d%d",&a,&b); C=2*(a+b); S……

简单代码易理解

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,C,S; scanf("%d %d",&a,&b); printf("C:%d\nS:%d",……

C语言之求长方形的面积

摘要:解题思路:简单的两个数学公式,长方形的周长以及面积公式注意事项:注意C与S要用半角冒号输出参考代码:#include<stdio.h>int main(){    int a,b; int C,S; ……

求长方形面积(C语言题解)

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() {     int A,B;     scanf("%d %d",&A,&B);     printf……

求长方形面积-题解(C语言代码)

摘要:解题思路:明白两点就好了面积:a*b周长:2 * (a + b)注意事项:输出格式中都要前缀”C/S:“,注意要大写参考代码:#include <stdio.h>int main(){ int a =……