English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

4 answers

Yes, many people on this forum know Java, to varying degrees. Including myself.

2007-03-19 10:44:00 · answer #1 · answered by Rex M 6 · 0 0

I love Java ...
and Yes.. i do program in Java too...

... all the Java fans out there .. say YeAh! ... \0/

/** FIBONACCI **/

public class Fibonacci
{
public static int fib(int n) {
if (n == 0) return 0;
if (n == 1) return 1;
return fib(n-1)+fib(n-2);
}
public static void main(String[] args) {
for (int i=0; i<=10; i++)
System.out.println("Fib "+i+" = "+ fib(i));
}
}

2007-03-20 19:23:31 · answer #2 · answered by Liviawarty J 2 · 0 0

Yes, I do program in Java as well.

2007-03-19 10:47:37 · answer #3 · answered by Anonymous · 0 1

i do

2007-03-19 10:58:32 · answer #4 · answered by icnintel 4 · 0 1

fedest.com, questions and answers