题解 1952: 求长方形面积

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

筛选

1952:求长方形面积

摘要:解题思路:表示两个变量,输出两个值注意事项:格式要正确哦,A B之间要有空格哒参考代码:#include<stdio.h>int main(){    int A,B;    scanf("%d %d……

编写题解 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; int C; int S; scanf("%d %d", &a,&b); C = 2 * ……

求长方形面积题解

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

求长方形正方形的面积和周长

摘要:解题思路:通过公式求解注意事项:基本知识的应用参考代码:#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……

简单代码易理解

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