竞赛
考级
#include <bits/stdc++.h> using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c>>d; if(a>=80&&(b>=80||c>=90)&&d<=360){ cout<<"good good good"; } else{ cout<<"sorry"; } return 0; }
一枚button
题解(if条件稍微有一点点难度,附详细注释) qwq写注释真的很累,希望大家点上一个大大的赞,这是我更新的动力~删除文本
mzx
法兰西玫瑰
题目分析 这道题实际上是考验我们的与和或逻辑,众所周知,在c语言中与是&&或是|| 所以我们就可以得到以下代码(有问题哦~) 错误代码演示 错误代码讲解 这个代码运行结果是没有问题的,我测试过了,但是你提交上去会发现他会有两个WA,这是为什么呢? 其实在c语言中与的优先级是比或要高的,也就是说,程序在执行的过程中会先执行与后执行或,根据上树代码,我们发现他的判断条件是以下 这也就导致了会先判断或地左边和右边,只要两个中的一个成立就行了。但事实上我们需要的结果不是这个,我们是要把他拆开来比较 正确代码演示 正确代码讲解 在这个正确代码中呢,我创建了四个变量,分别代表题目中要求的四个变量。 其次,这里的唯一一个不同就是判断条件变成了 在这里呢,我加上了一个()来先运行()中的内容(括号的优先级大于与),现在去尝试运行结果是没问题的,我也测试过了,现在我们只需要放心大胆的点击提交就行了。 希望大家给个小小的赞 招人启示 多余的我懒得写了,感兴趣的加吧不强求 提问时间 (尽情地提问吧!)
༺ཌༀ傲世万物ༀད༻
chaizechen
majmDZB
151****9879
#include<iostream> using namespace std; int main(){ int x,y,z,t; cin>>x>>y>>z>>t; if (x>79 and (y>79 or z>89) and t<=360){ cout<<"good good good"; } else{ cout<<"sorry"; } return 0; }
伍弈舟
#include<iostream> using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c>>d; if (a>=80&&(b>=80 || c>=90)&&d<=360){ cout<<"good good good"; }else{ cout<<"sorry"; } return 0; }
金杰錱
#include<iostream> using namespace std; int main(){ int x,y,z,t; cin>>x>>y>>z>>t; if (x>=80 && (y>=80 || z>90) && t<=360) { cout<<"good good good"; } else { cout<<"sorry"; } return 0; }
eating
#include<cstdio> #include<iostream> #include<cmath> using namespace std; int main(){ int x,y,z,t,a=0; cin>>x>>y>>z>>t; if(x<80)a=1; if(y<80&&z<90)a=1; if(t>360)a=1; if(a==0)cout<<"good good good"; else cout<<"sorry"; return 0; }
准
acgoacgo
1ntrEstingด้้้้้
x,y,z,t = list(map(int,input().split())) if x >= 80: if y >= 80 or z >= 90: if t <= 360: print('good good good') else: print('sorry') else: print('sorry') else: print('sorry')
复仇者_龍乄
闯思得
> 本题可以指定一个函数 > > > 我的函数叫'good' > > > > > 接着加几个return即可 > > > > > > > 注意:有x、y、z、t,4个变量,我第一次就错了,因为只写了xyz【真尴尬】 新消息
AC
逍遥骇好=&
#include<iostream> #include<cstring> using namespace std; int main(){ int x,y,z,t; cin>>x>>y>>z>>t; if((y>=80||z>=90)&&x>=80&&t<=360){ cout<<"good good good"; } else{ cout<<"sorry"; }
迷路的猫头鹰
6.
事实上还有三差学生
༺ཌༀTN黑客ༀད༻
共26条