Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. public class sayılarıgoster {
  2.  
  3. //Author ßari$
  4.  
  5. public static void main(String[] args) {
  6.  
  7. double a;
  8. double b;
  9. double c;
  10.  
  11. Scanner scanner = new Scanner(System.in);
  12. System.out.println("A sayısını giriniz(taban): ");
  13. a = scanner.nextInt();
  14. System.out.println("B sayısını giriniz(kuvvet): ");
  15. b = scanner.nextInt();
  16.  
  17. c = Math.pow(a,b);
  18.  
  19. System.out.println("Üstünü aldığınız sayı: "+c);
  20.  
  21.  
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement