public static void main(String[] args) { int f = 0; int g = 1; for(int i = 1; i <= 10; i++) { System.out.print(f + " "); f = f + g; g = f - g; } System.out.println(); }
Subscribe to:
Post Comments (Atom)
-
The stackalloc keyword C# has the stackalloc keyword which lets you force unmanaged type arrays to be allocated on the stack inside ...
-
via:: javarevisited.blogspot.com When does NullPointerException occurs in Java Javadoc of java.lang.NullPointerException has out...
No comments:
Post a Comment