2787: 有一门课不及格的学生 摘要:解题思路:注意事项:有一门课几个另一门课一定不及格参考代码:#include <iostream>using namespace std;int main(){ int x,y; cin …… 题解列表 2023年12月17日 0 点赞 0 评论 257 浏览 评分:9.9
编写题解 2787: 有一门课不及格的学生 摘要:解题思路:注意事项:参考代码:score = list(map(int, input().split())) if min(score) < 60: if max(score) >= 60…… 题解列表 2023年12月17日 1 点赞 0 评论 453 浏览 评分:10.0
2787: 有一门课不及格的学生 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d %d", &a, &b); if (a<60 && b>…… 题解列表 2023年11月13日 0 点赞 0 评论 412 浏览 评分:0.0
2787有一门课不及格的学生题解(c++) 摘要:#include using namespace std; int main(){ int a; int b; cin>>a>>b; if (a…… 题解列表 2023年11月05日 0 点赞 0 评论 350 浏览 评分:8.0
有一门课不及格的学生(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年11月02日 0 点赞 0 评论 439 浏览 评分:8.0
2787: 有一门课不及格的学生 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int a,b; cin>>a>>b;…… 题解列表 2023年11月01日 0 点赞 0 评论 395 浏览 评分:0.0
Java简单版本 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main{ public static void main(String[] args) { …… 题解列表 2023年11月01日 0 点赞 0 评论 433 浏览 评分:9.9
有一门课不及格的学生(使用||简化) 摘要:参考代码: ```c #include int main() { int a,b; scanf("%d%d",&a,&b); if((a=60)||(b=60))//有一门课不及格…… 题解列表 2023年09月06日 0 点赞 0 评论 433 浏览 评分:0.0
利用逻辑运算来输出 摘要:解题思路:利用逻辑运算来输出,逻辑运算的输出数值只有0和1注意事项: //逻辑运算 //与运算:只要有一个假就为假 //或运算:只要有一个真就可以真 //异或运算:一真一假才为真参考代…… 题解列表 2023年02月15日 0 点赞 0 评论 557 浏览 评分:10.0
2787: 有一门课不及格的学生 摘要:```cpp #include using namespace std; int main() { int a,b; cin>>a>>b; if(a>=60&&b…… 题解列表 2023年01月13日 0 点赞 0 评论 555 浏览 评分:9.9