7.2.. Učitati 3 broja sa tastature. Sabrati one koji su u intervalu veći 5 i manji ili jednak 9.
Listing programa:
// 07211059
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner input = new Scanner (System.in);
int s = 0; // pocetna vrijednost
System.out.print("Unesi a: ");
int a=input.nextInt();
if (a > 5 && a <= 9)
s = s + a; // prvi broj
System.out.print("Unesi b: ");
int b=input.nextInt();
if (b > 5 && b <= 9)
s = s + b; // drugi broj
System.out.print("Unesi c: ");
int c = input.nextInt();
if (c > 5 && c <= 9) // treci broj
s = s + c;
System.out.print("Suma je: " + s);
}
}
Ispis na ekranu:
Ispis na ekranu:
Index
|