No, I am not competing for obfuscated code context. 아니오, 난 아무것도 읽을 수없는 코드를 컨텍스트 경쟁을합니다. I realized while showing it to someone that Fibonacci series can be written much more succintly using modern programming languages like c, java or php. 나는 그것을 실현있는 그런 사람을 표시하는 동안 피보 시리즈로 작성할 수있습니다 훨씬 더 현대적인 프로그래밍 언어를 사용하여 같은 succintly c, 자바 또는 php.

Here is the one-line php version: 다음은 한 - 라인 php 버전 :
' ?> '?>

It outputs 100 fibonacci numbers, each in separate line. 그것 출력 100 피보나치 숫자, 각각을 별도의 라인.
Note: It doesn’t use a temporary variable as is normal in other implementations. 참고 사항 : 임시 변수를 사용하지 않는 그것은 정상적인 다른 구현합니다. It obviates the need by utilizing the power of expressions. 그것 obviates의 전원을 활용하여 표현이 필요합니다. The rest is achieved with a simple for loop. 나머지는 단순 루프를 달성합니다.

Here is the same example in Java / JSP. 여기서는 같은 예제에 자바 / jsp합니다.
<% for(double current = 1, last = 0, i = 1;i++ <= 100;) out.println((current = last + (last = current)) + " <%의 (더블 전류 = 1, 마지막으로 = 0, 나 = 1; 나는 + + <= 100;) out.println ((전류 = 지난해 + (지난 = 현재)) + "
"); %> ");"%>

Note: The double is used because long is unable to display correctly all 100 numbers due to size limitations. 참고 :이 두 번가 사용됩니다 정확하게 때문에 시간은 모두 100 번호를 표시할 수없습니다 크기 제한으로 인해합니다.