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.io.*; | |
| public class mathproblems { | |
| public static void main (String [] args) throws IOException { | |
| InputStreamReader inStream = new InputStreamReader(System.in); | |
| BufferedReader systemIn = new BufferedReader(inStream); | |
| String centigrades, fahrenheit; | |
| double fahrenheitanswer, centigradeanswer; | 
  
    
      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.io.*; | |
| public class Age { | |
| public static void main(String [] args) throws IOException { | |
| InputStreamReader inStream = new InputStreamReader(System.in); | |
| BufferedReader systemIn = new BufferedReader(inStream); | |
| String my_name, greeting, myAge, variable; | |
  
    
      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.io.*; | |
| class BonusWage { | |
| public static void main (String [] args ){ | |
| Scanner input = new Scanner(System.in); | |
| int hours, extrahours; | |
| double wagerate,total,bonus; | |
  
    
      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
    
  
  
    
  | mport java.util.Scanner; | |
| import java.io.*; | |
| class Fever { | |
| public static void main (String [] args) throws IOException { | |
| Scanner input = new Scanner(System.in); | |
| double temp; | |
  
    
      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.io.*; | |
| class PosNeg { | |
| public static void main (String [] args) throws IOException { | |
| Scanner input = new Scanner(System.in); | |
| double number; | 
  
    
      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.io.*; | |
| class Shirts { | |
| public static void main (String [] args) throws IOException { | |
| Scanner input = new Scanner(System.in); | |
| double shirts,total; | 
  
    
      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 Tickets { | |
| public static void main (String [] args) throws IOException { | |
| Scanner input = new Scanner(System.in); | |
| char argument; | |
| int age; | |
| double total; | 
  
    
      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 AsteriskTriangle { | |
| public static void main(String[] args){ | |
| Scanner input = new Scanner(System.in); | |
| int initial, next, last; | |
| System.out.println("Please type an integer: "); | 
  
    
      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 MilesPerGallon { | |
| public static void main(String[] args){ | |
| Scanner input = new Scanner(System.in); | |
| int imiles, fmiles, gallons, mpg; | |
  
    
      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 ClassifyNumbers { | |
| public static void main(String [] args) { | |
| Scanner input = new Scanner(System.in); | |
| int initial, low, high, sum, value, i; | |
| System.out.println("How many numbers do you wish to analyze?"); | 
OlderNewer