Language FORTRAN 77
(standard version)
Date: | 04/20/05 |
Author: | Anonymous |
URL: | n/a |
Comments: | 1 |
Info: | n/a |
Score: | (2.40 in 10 votes) |
99 Bottles of beer in FORTRAN 77 real count count = 99 do while (count .gt. 0) write (*,*) count,"bottles of beer on the wall," write (*,*) count,"bottles of beer," write (*,*) "Take one down, pass it around," count = count - 1 write (*,*) count,"bottles of beer on the wall" write (*,*) " " end do stop end
Download Source | Write Comment
Alternative Versions
Version | Author | Date | Comments | Rate |
---|---|---|---|---|
Arithmetic IF Version | Alex Ford | 06/22/05 | 2 | |
FORMAT edit descriptors, obfuscation | Robin Haberkorn | 01/16/07 | 1 |
Download Source | Write Comment
Add Comment
Please provide a value for the fields Name,
Comment and Security Code.
This is a gravatar-friendly website.
E-mail addresses will never be shown.
Enter your e-mail address to use your gravatar.
Please don't post large portions of code here! Use the form to submit new examples or updates instead!
Comments
Tomas Vanek said on 10/18/06 09:23:09
This is not FORTRAN 77 but a mixture with Fortran 90.