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.
 

643 B

Tee ohjelma Ylinopeus.java, joka kysyy käyttäjältä kokonaisluvun ja tulostaa merkkijonon "Ylinopeussakko!" jos luku on suurempi kuin 120.

Jos annettu luku on 120 tai vähemmän, ohjelmasi ei tule tulostaa mitään.

Example output:
Kerro nopeus: 90

Ylinopeus.java

import java.util.Scanner;
public class Ylinopeus {
public static void main(String[] args) {
Scanner syote = new Scanner(System.in);
System.out.print("Kerro nopeus: ");
double nopeus = syote.nextInt();
if (nopeus > 120) {
System.out.println("Ylinopeussakko!");
}
}
}