Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. import java.util.*;
  2. public class PA4_2
  3. {
  4. public static void main(String[] args)
  5. {
  6. System.out.println("Welcome to Sourena's temperature converter!");
  7. Scanner keyboard = new Scanner(System.in);
  8. System.out.println("Celsius Fahrenheit");
  9. System.out.println("---------------------");
  10. for(int i = 0; i < 31; i++) {
  11. double f = 1.8 * i + 32;
  12. System.out.println(i + " " + f);
  13. }
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement