Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2014
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. package count;
  2.  
  3. public class Count {
  4.  
  5. public static void main(String[] args) {
  6. int c = 0;
  7. int i = 1;
  8. int t = 0;
  9. int b = 1;
  10. while (t < 50) {
  11.  
  12. b = i + c;
  13.  
  14. c= i;
  15.  
  16. i=b;
  17.  
  18. System.out.println(c);
  19.  
  20.  
  21. t++;
  22. }
  23.  
  24. }
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement