Java fundamentals through coding exercises
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
643 B

4 years ago
  1. Tee ohjelma Ylinopeus.java, joka kysyy käyttäjältä kokonaisluvun ja tulostaa merkkijonon "Ylinopeussakko!" jos luku on suurempi kuin 120.
  2. Jos annettu luku on 120 tai vähemmän, ohjelmasi ei tule tulostaa mitään.
  3. ```
  4. Example output:
  5. Kerro nopeus: 90
  6. ```
  7. --------------------
  8. **Ylinopeus.java**
  9. ```
  10. import java.util.Scanner;
  11. public class Ylinopeus {
  12. public static void main(String[] args) {
  13. Scanner syote = new Scanner(System.in);
  14. System.out.print("Kerro nopeus: ");
  15. double nopeus = syote.nextInt();
  16. if (nopeus > 120) {
  17. System.out.println("Ylinopeussakko!");
  18. }
  19. }
  20. }
  21. ```