Question
The program input is a character representing the observed color of the cylinder: 'Y' or 'y' for yellow, 'O' or 'o for orange, and so on.
Cylinder colors and their associated contents are as follows:
orange ammonia
brown carbon monoxide
yellow hydrogen
green oxygen
If an invalid letter is entered, notify the user of incorrect input by stating Contents Unknown.
Solution Preview
These solutions may offer step-by-step problem-solving explanations or good writing examples that include modern styles of formatting and construction of bibliographies out of text citations and references. Students may use these solutions for personal skill-building and practice. Unethical use is strictly forbidden.
public class program {/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
Scanner sc = new Scanner(System.in);
System.out.print("enter the character representing the observed color of the cylinder : ");...
By purchasing this solution you'll be able to access the following files:
Solution.zip.