Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2014
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1.  
  2. public class uppg4_moment5
  3. {
  4.     public static void main(String[] args)
  5.     {
  6.  
  7.       int f = 0;
  8.       int g = 1;
  9.  
  10.       for(int i = 1; i <= 20; i++)
  11.       {
  12.         System.out.print(f + " ");
  13.         f = f + g;
  14.         g = f - g;
  15.       }
  16.  
  17.       System.out.println();
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement