import java.util.Scanner; class Loops { public static void main(String [] args) { Scanner in = new Scanner(System.in); System.out.println("Enter the passing grade: "); int pass = in.nextInt(); // Get a passing grade from the user //Uncomment the next few lines to run a while loop example (get rid of the "/*" and the "*/" //int i=0; /* while(i<=100) // This loop runs until i = 101 { if(i