Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
docs:programming:fizzbuzz [2007/07/07 23:46] billhdocs:programming:fizzbuzz [2008/08/03 00:25] (current) – external edit 127.0.0.1
Line 36: Line 36:
  
 ===== C++ ===== ===== C++ =====
 +FIXME
 +
 +===== C# =====
 FIXME FIXME
  
Line 181: Line 184:
 php FizzBuzz.php php FizzBuzz.php
 </code> </code>
 +
  
 ===== Javascript/ECMAScript ===== ===== Javascript/ECMAScript =====
-FIXME+**FizzBuzz.htm** 
 +<code javascript> 
 +<script type="text/javascript"> 
 + var i; 
 +  
 + for(i=1; i<=100; i++){ 
 + if(i % 3 == 0 && i % 5 == 0){ 
 + document.write("FizzBuzz<br />");  
 + }else if(i % 3 == 0){ 
 + document.write("Fizz<br />"); 
 + }else if(i % 5 == 0){ 
 + document.write("Buzz<br />"); 
 + }else{ 
 + document.write(i + "<br />");  
 +
 +
 +</script> 
 +</code>
  
 ===== Shell Script ===== ===== Shell Script =====
  • docs/programming/fizzbuzz.1183873583.txt.gz
  • Last modified: 2008/08/03 00:25
  • (external edit)