题解 2787: 有一门课不及格的学生

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

C语言-有一门课不及格的学生

摘要:解题思路:分支结构-if判断语句注意事项:“恰好”一门及格参考代码:#include<stdio.h>#include <math.h>int main(){    int n,m;    scanf……

有一门课不及格的学生

摘要:解题思路:注意事项:当且仅当两门中只有一门不及格时输出为1参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>#include <……

java--study||O.o

摘要:参考代码:import java.util.Scanner;   public class Main {   public static void main(String[] args)   ……

有一门科目不及格的学生

摘要:解题思路:注意事项:注意这里题目说的是只有一门不及格参考代码:#include<stdio.h>int main(){    int a,b;    scanf("%d%d",&a,&b);    i……