Home /
Expert Answers /
Computer Science /
java-1-write-a-program-that-accepts-1-integer-and-create-a-nxn-multiplication-table-with-that-pa562
(Solved): Java
1. Write a program that accepts 1 integer and create a nxn multiplication table with that ...
Java
1. Write a program that accepts 1 integer and create a nxn multiplication table with that value. Examples: 2. Write a program that accepts 2 values Celsius and Fahrenheit. Using each value print Celsius into a Fahrenheit value, and Fahrenheit into a Celsius value (you may use methods): Examples: Pleaser enter a Celsius value: 458.15 Converting 458.15C to F:856.67F Pleaser enter a Fahrenheit value: 319.418 Converting 319.418F to C: 159.68C Pleaser enter a Celsius value: 0 Converting 0.0C to F: 32.00F Pleaser enter a Fahrenheit value: 32 Converting 32.0F to C: 0.00C
3. Write a program that accepts 5 char values and displays its ASCII values ( hint: to get a char from the user use in.next().charAt(0)) Example: Provide a Char value to convert it to its ASCII value: ( ASCII value of ( is: 40 Provide a Char value to convert it to its ASCII value: a ASCII value of a is: 97 Provide a Char value to convert it to its ASCII value: D ASCII value of D is: 68 Provide a Char value to convert it to its ASCII value: G ASCII value of G is: 71 Provide a Char value to convert it to its ASCII value: ? ASCII value of ? is: 94