有一门课不及格的学生(使用||简化) 摘要:参考代码: ```c #include int main() { int a,b; scanf("%d%d",&a,&b); if((a=60)||(b=60))//有一门课不及格…… 题解列表 2023年09月06日 0 点赞 0 评论 157 浏览 评分:0.0
C语言-有一门课不及格的学生 摘要:解题思路:分支结构-if判断语句注意事项:“恰好”一门及格参考代码:#include<stdio.h>#include <math.h>int main(){ int n,m; scanf…… 题解列表 2024年01月22日 0 点赞 0 评论 38 浏览 评分:0.0
编写题解 2787: 有一门课不及格的学生 摘要:解题思路:判断语句注意事项:判断他是否恰好有一门课不及格参考代码:ch, ma = map(int, input().split()) if ch < 60 and ma >= 60 : …… 题解列表 2024年03月06日 0 点赞 0 评论 261 浏览 评分:4.0
2787有一门课不及格的学生题解(c++) 摘要:#include using namespace std; int main(){ int a; int b; cin>>a>>b; if (a…… 题解列表 2023年11月05日 0 点赞 0 评论 82 浏览 评分:8.0
有一门课不及格的学生(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年11月02日 0 点赞 0 评论 115 浏览 评分:8.0
有一门课不及格的学生 摘要:解题思路:注意事项:当且仅当两门中只有一门不及格时输出为1参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>#include <…… 题解列表 2022年10月23日 0 点赞 1 评论 360 浏览 评分:9.0
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年01月06日 0 点赞 0 评论 136 浏览 评分:9.7
题解 2787: 有一门课不及格的学生 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; …… 题解列表 2023年12月23日 0 点赞 0 评论 74 浏览 评分:9.9
有一门科目不及格的学生 摘要:解题思路:注意事项:注意这里题目说的是只有一门不及格参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d%d",&a,&b); i…… 题解列表 2022年11月11日 0 点赞 0 评论 1050 浏览 评分:9.9
2787: 有一门课不及格的学生 摘要:解题思路:注意事项:参考代码:import sysa , b = map(int,input().strip().split())if a < 0 or a > 100 or b < 0 or b >…… 题解列表 2022年11月29日 0 点赞 2 评论 371 浏览 评分:9.9