72 条题解
信息
- ID
- 652
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 4
- 标签
- 递交数
- 8891
- 已通过
- 4396
- 上传者
先判断后输出,面积输出,可以不放入if-else中,上代码!
#include <bits/stdc++.h>
using namespace std;
int main()
{
int a,b;
cin >> a >> b;
if (a==b)//判断条件
{
cout <<"Y"<<endl;//注意引号
}
else
{
cout <<"N"<<endl;
}
cout << a*b;
return 0;
}
日常第二十题,嗨害嗨~~~
从第二十题以后,我的题解会故意错两个地方,或少给代码因为有人用了非常那个的手段(复制题解还不点赞(woyinggaimeishuocuoba)(kaigewanxiao))复制者请注意!!!为什么复制不点赞?(bushi
一手交赞一手交(代)码?(bushi
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
if(a==b)
{
cout<<"Y"<<endl<<a*a;
return 0;
}
cout<<"N"<<endl<<a*b;
return 0;
}
rrr
😕 ###### 6666666666666666666666666666666666666666666666666666
吧上面endl去掉把下面改成 cout <<endl<< a*b;可以减少四个字符(
怎么发布代码啊?????????????????????????????????????????????????????????
可以不写return 0; 如
#include <iostream>
using namespace std;
int main()
{
int x,y;
cin>>x>>y;
if (x==y)
{
cout<<"Y"<<endl;
}
else
{
cout<<"N"<<endl;
}
cout<<x*y;
}
//这道题挺简单的,就是用一个if语句加上输出就行了,来,上代码!
#include<iostream>
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
if(a==b)
{
cout<<"Y"<<endl<<a*b;
}
else
{
cout<<"N"<<endl<<a*b;
}
return 0;
}
//编码不易,先点赞,在抱走哦😄
wk
可以不写return 0; 如
#include <iostream>
using namespace std;
int main()
{
int x,y;
cin>>x>>y;
if (x==y)
{
cout<<"Y"<<endl;
}
else
{
cout<<"N"<<endl;
}
cout<<x*y;
}
#include<iostream>
using namespace std;
int main()
{
int a,b;//定义
cin>>a>>b;//输出
if(a!=b)//如果不是正方形
{
cout<<"N"<<endl<<a*b;
}
else//否则是正方形
{
cout<<"Y"<<endl<<a*b;
}
return 0;
}
先赞❤️ ,后拿👀️
谢了
点个赞吧
#include <bits/stdc++.h>
using namespace std;
int main()
{
int a, b;
cin >> a >> b;//输入两条边长
if (a == b)//判断是否是正方形
{
cout << "Y" << endl;//注意要换行
}
else
{
cout << "N" << endl;//注意要换行
}
cout << a * b;//输出面积
return 0;
}
先赞后看,养成习惯! 上代码😄 !
#include <bits/stdc++.h>
using namespace std;
int a,b;
int main()
{
cin>>a>>b;//输入边长
if(a==b)//如果是正方形,即两条边相等
{
cout<<"Y";//输出"Y"
}
else//如果不是
{
cout<<"N";//输出"N"
}
cout<<endl<<a*b;//输出面积(注意要换行)
return 0;
}
100分通过!
小红书名:知秋一夜 【绿色少女头像】,点赞,收藏,关注(基本操作了啊)
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n,m;
cin>>n>>m;
if(n==m)
{
cout<<'Y'<<endl<<n*m;
}
else
{
cout<<"N"<<endl<<n*m;
}
}
复制代码不点赞,我变鬼都来弄死你(╯▔皿▔)╯
#include<bits/stdc++.h>
using namespace std;
int main()
{
int c,v;
cin >> c >> v;
if (c==v)
{
cout <<"Y"<<endl;
}
else
{
cout <<"N"<<endl;
}
cout << c*v;
return 0;
}//A
#include <bits/stdc++.h>
using namespace std;
int main()
{
int a , b;
cin >> a >> b;
if(a == b)//判断是否为正方形(两条边相等)
{
cout << "Y" << endl;
}
else//不是
{
cout << "N" << endl;
}
cout << a * b;//无论是不是正方形都要输出面积 两边的积
return 0;
}
简单if
判断真的是easy
#include<bits/stdc++.h>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
if(a==b){
cout<<"Y"<<endl<<a*b;
}else{
cout<<"N"<<endl<<a*b;
}
return 0;
}
#include <iostream>
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
if(a==b)
{
cout<<"Y"<<endl;
}
else
{
cout<<"N"<<endl;
}
cout<<a*b<<endl;
return 0;
}
先判断是"Y"还是"N",再输出面积。
#include<bits/stdc++.h>
using namespace std;
int main(){
int x,y;
cin >> x >> y;
if(x == y) cout << "Y" << endl << x * y;
else cout << "N" << endl << x * y;
return 0;
}
鸡你太美
oh baby~~
实在是太美
#include <bits/stdc++.h>
using namespace std;
int main()
{
int a,b;
cin >> a >> b;
if (a==b)//判断条件
{
cout <<"Y"<<endl;//注意引号
}
else
{
cout <<"N"<<endl;
}
cout << a*b;
return 0;
}
#include <bits/stdc++.h>
using namespace std;
int main()
{
int a,b;
cin >> a >> b;
if (a==b)//判断条件
{
cout <<"Y"<<endl;//注意引号
}
else
{
cout <<"N"<<endl;
}
cout << a*b;
return 0;
}
#include <bits/stdc++.h> using namespace std; int main() { int a,b,n=0; cin >> a >> b; if (a != b) { cout << "N"<<endl; } else { cout << "Y"<<'\n'; } n = a*b; cout << n; return 0; }
#include <iostream> using namespace std; int main() { int a,b; cin>>a>>b; if(a=b) { cout<<"Y"<<endl; } else { cout<<"N"<<endl; } cout<<a*b; return 0; } 各位帮忙看看哪里错了?