Advertisement
Guest User

Untitled

a guest
Oct 24th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.68 KB | None | 0 0
  1. package com.company;
  2. import java.util.Scanner;
  3. public class Main {
  4.     public static void main(String[] args) {
  5.         Scanner unos = new Scanner(System.in);
  6.         System.out.print("Unesite iznos investicije: ");
  7.         double iznosInvesticije = unos.nextDouble();
  8.         System.out.print("Unesite godisnju interesnu stopu: ");
  9.         double  godisnjaInteresnaStopa = unos.nextDouble();
  10.         System.out.print("Unesite broj godina: ");
  11.         double brojGodina = unos.nextDouble();
  12.  
  13.         double buducaVrijednostInvesticije = (iznosInvesticije * (1 + godisnjaInteresnaStopa)) ^ (brojGodina * 12);
  14.  
  15.         System.out.println("rez" +buducaVrijednostInvesticije);
  16.  
  17.  
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement