编写题解 2787: 有一门课不及格的学生 摘要:解题思路:两个恰好有一个,联想到异或门,当两变量不同时为一,相同时为零注意事项:参考代码:a,b=map(int,input().strip().split())if (a>=60)^(b>=60)=…… 题解列表 2024年12月22日 0 点赞 0 评论 86 浏览 评分:0.0
编写题解 2787: 有一门课不及格的学生 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b; scanf("%d %d",&a,&b); if((a<60&&b>60)…… 题解列表 2024年12月06日 0 点赞 0 评论 104 浏览 评分:0.0
2787普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a; scanf("%d%d",&n,&a); if (n<60 && a<60) printf(…… 题解列表 2024年11月23日 0 点赞 0 评论 79 浏览 评分:0.0
最普通的解题方法 摘要:解题思路:注意事项:注意将条件考虑完整参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d %d",&a,&b); if(0<=a…… 题解列表 2024年11月11日 0 点赞 0 评论 48 浏览 评分:0.0
编写题解 2787: 有一门课不及格的学生 摘要:解题思路:判断语句注意事项:判断他是否恰好有一门课不及格参考代码:ch, ma = map(int, input().split()) if ch < 60 and ma >= 60 : …… 题解列表 2024年03月06日 0 点赞 0 评论 260 浏览 评分:4.0
2787: 有一门课不及格的学生 摘要:参考代码:#include<iostream> using namespace std; int main() { int a, b; cin >> a >> b; …… 题解列表 2024年03月01日 0 点赞 0 评论 219 浏览 评分:0.0
初学布尔表达式,你也可以! 摘要:解题思路: 输出1or0,脱离判断语句,考虑布尔值。 这边用异或运算,一真一假为真。 & 题解列表 2024年01月29日 0 点赞 0 评论 135 浏览 评分:9.9
C语言-有一门课不及格的学生 摘要:解题思路:分支结构-if判断语句注意事项:“恰好”一门及格参考代码:#include<stdio.h>#include <math.h>int main(){ int n,m; scanf…… 题解列表 2024年01月22日 0 点赞 0 评论 38 浏览 评分:0.0
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年01月06日 0 点赞 0 评论 135 浏览 评分:9.7
题解 2787: 有一门课不及格的学生 摘要:解题思路:注意事项:参考代码: #include<stdio.h> int main() 题解列表 2023年12月25日 0 点赞 0 评论 31 浏览 评分:0.0