Skip to content

Instantly share code, notes, and snippets.

@peter279k
Created May 24, 2017 04:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peter279k/e4cb3f074bf1c7d704cb793aaa9802c7 to your computer and use it in GitHub Desktop.
Save peter279k/e4cb3f074bf1c7d704cb793aaa9802c7 to your computer and use it in GitHub Desktop.
TQC+J AVA
import java.util.*;
public class JPA02 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String[] args) {
test();
test();
test();
test();
}
static void test() {
int chi, eng, math, avg;
System.out.print("Input Chinese score:");
chi = keyboard.nextInt();
System.out.print("Input English score:");
eng = keyboard.nextInt();
System.out.print("Input Math score:");
math = keyboard.nextInt();
if(chi < 60) {
System.out.println("Chinese failed.");
}
if(eng < 60) {
System.out.println("English failed.");
}
if(math < 60) {
System.out.println("Math failed.");
}
if(chi >= 60 && eng >= 60 && math >= 60) {
System.out.println("All pass.");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment