Advertisement
Guest User

Untitled

a guest
Oct 16th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. FILIP SUKENÍK
  2. package test;
  3.  
  4. import java.util.Scanner;
  5.  
  6. public class Main {
  7. public static void main(String[] args) {
  8. System.out.print("slovo");
  9. double DPH =0;
  10. double Cenadph =0;
  11. double částkadph =0;
  12. double Cenabezdph =0;
  13.  
  14. Scanner sc = new Scanner(System.in);
  15. System.out.print("Zadej DPH a : ");
  16. DPH=(sc.nextDouble()+100)/100;
  17. System.out.print("Zadej Cenadph");
  18. Cenadph=sc.nextDouble();
  19. System.out.print("čÁSTKA DPH JE: ");
  20. částkadph=Cenadph-Cenabezdph;
  21. Cenabezdph= DPH/Cenadph
  22.  
  23.  
  24.  
  25.  
  26.  
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement