Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class P08CelsiusToFahrenheit {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- double celsius = Double.parseDouble(scanner.nextLine());
- double Fahrenheit = celsius * 1.8 + 32;
- System.out.printf("%.2f", Fahrenheit);
- }
- }
- //a tova e moeto reshenie
- //import java.util.Scanner;
- //public class P08CelsiusToFahrenheit {
- // public static void main (String[] args) {
- // Scanner scanner = new Scanner(System.in);
- // double celsius = Double.parseDouble(scanner.nextLine());
- // double Fahrenheit = (celsius * 1.8) + 32;
- // double fahrenheit = Math.floor(celsius);
- // System.out.println(Fahrenheit);
- // }
- // }
Advertisement
Add Comment
Please, Sign In to add comment