6.4.. Izračunati sumu kubova tri učitana broja.
Listing programa:
//
package zadatak;
import java.util.Scanner;
public class P06411140 {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("Unesi prvi broj: ");
int a = input.nextInt();
System.out.print("Unesi drugi broj: ");
int b = input.nextInt();
System.out.print("Unesi treci broj: ");
int c = input.nextInt();
double S = Math.pow(a, 3) + Math.pow(b, 3) + Math.pow(c, 3);
System.out.print("Zbir kubova tri unesena broja je: " + S);
}
}
Ispis na ekranu:
Index
|