Zitat:
Zitat von CiscoKid Und hier noch was für die ganz faulen ^^ Code: main(){int i=500;for(;i--;)puts("I will not throw paper airplanes into the class.");} /ck |
Wie oft wollt ihr diese Frage noch nach 3 Monaten ausgraben?
Ich pers. würd übrigens eine andere Sprache nehmen (deins hat 85 Zeichen):
PHP (82 Zeichen):
PHP-Code:
<? for($i=0;$i<500;$i++) echo "I will not throw paper airplanes into the class.";}
Python (80 Zeichen):
Code:
for i in range(0,500): print("I will not throw paper airplanes into the class.")