This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import java.util.Scanner; | |
| class OrderChecker { | |
| public static void main(String [] args) { | |
| Scanner input = new Scanner(System.in); | |
| int bolt, nut, wash; | |
| double total; | |
| System.out.println("Enter number of bolts: "); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import java.util.Scanner; | |
| public class PerfectNumber { | |
| public static void main (String [] args) { | |
| Scanner input = new Scanner(System.in); | |
| System.out.println("How many numbers: "); | |
| int limite = input.nextInt(); | |
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import java.util.Scanner; | |
| public class CreditCard { | |
| public static void main (String [] args) { | |
| Scanner input = new Scanner(System.in); | |
| System.out.println("Enter the monthly payment: "); | |
| double pay = input.nextDouble(); | |
| int month = 0; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import java.util.Scanner; | |
| public class CountingLetters { | |
| public static void main (String [] args) { | |
| Scanner input = new Scanner(System.in); | |
| System.out.println("Enter first word: "); | |
| String primero = input.next(); | |
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import java.util.Scanner; | |
| public class MoreTirePressure { | |
| public static void main (String [] args) { | |
| Scanner input = new Scanner(System.in); | |
| System.out.println("Pressure of the right front tire: "); | |
| double rf = input.nextDouble(); | |
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import java.util.Scanner; | |
| class TirePressure { | |
| public static void main (String [] args) { | |
| Scanner input = new Scanner(System.in); | |
| System.out.println("Pressure of the right front tire: "); | |
| double rf = input.nextDouble(); | |
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import java.util.Scanner; | |
| class Delicatessen { | |
| public static void main (String [] args) { | |
| Scanner input = new Scanner(System.in); | |
| System.out.println("Enter the item:"); | |
| String item = input.next(); | |
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import java.util.Scanner; | |
| public class dontread { | |
| public static void main (String [] args) { | |
| Scanner input = new Scanner(System.in); | |
| String hello = input.next(); | |
| System.out.println("I got my first solution!!!"); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import java.util.Scanner; | |
| import java.lang.Math; | |
| public class SimpleDishes { | |
| public static void main (String [] args) { | |
| Scanner input = new Scanner(System.in); | |
| int desirednum = input.nextInt(); | |
| int[] weights = new int[desirednum]; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import java.util.Scanner; | |
| import java.util.Arrays; | |
| import java.io.*; | |
| public class aandb { | |
| public static void main (String [] args) throws IOException { | |
| InputStreamReader inStream = new InputStreamReader(System.in); | |
| BufferedReader systemIn = new BufferedReader(inStream); |