Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. package count;
  2.  
  3. /**
  4. * @author Jamison Allen
  5. */
  6. public class Count {
  7.  
  8.  
  9. public static void main(String[] args) {
  10. System.out.println("Counting Program ");
  11. int index;
  12. index = 1;
  13. while ( index <= 10){
  14. System.out.println(index + "Roy High Royals");
  15. index = index = 10; //index=+1 index++
  16.  
  17.  
  18. }
  19. System.out.println("finished!");
  20. }
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement