题解 1952: 求长方形面积

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

筛选

求长方形面积

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    float A,B,C,S;    scanf("%f%f",&A,&B);    C=2*(A+B); ……

求长方形面积

摘要:参考代码:#include<stdio.h>int main(){ int a,b; int C=0,S=0; scanf("%d%d",&a,&b); C=2*(a+b); S=a*b; print……

C语言之求长方形的面积

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

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

摘要:解题思路:长方形的周长公式:C=2*(a+b),长方形的面积公式:S=a*b注意事项:打印“C:”、“S:”,使用半角冒号参考代码:#include<stdio.h> main() {     ……

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

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