Findryan

Untitled

Nov 10th, 2016
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class PerulanganDoWhile
  4. {
  5. public static void main(String[] args)
  6. {
  7. Scanner dataAngka = new Scanner(System.in);
  8. int i=0;
  9. System.out.print("Masukan nilai a = ");
  10. int a = dataAngka.nextInt();
  11. System.out.print("Masukan nilai n= ");
  12. int n = dataAngka.nextInt();
  13. do{
  14. System.out.println("hasil : "+i);
  15. i=i*a;
  16. }
  17. while (i<=n);
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment