Advertisement
Crenox

InfiniteLoop Java Program

Jan 19th, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. // Sammy Samkough
  2. // Infinite Loop
  3. // Spec: This is a loop that never gets terminated, it infinitely loops.
  4.  
  5. public class InfiniteLoop
  6. {
  7. public static void main(String args[])
  8. {
  9. while (true)
  10. {
  11. System.out.print("loop");
  12. }
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement