-
-
Save LightningStalker/6851bce88725f29aca7bed423b7622e7 to your computer and use it in GitHub Desktop.
Not sure what I was doing with this one, but here it is
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| int main (int argc, char **argv) | |
| { | |
| float i = 63.2, j = 63.2; | |
| int t; | |
| for (t = 0; t < 5; t++) | |
| { | |
| printf("%0.1f", j); | |
| getchar(); | |
| i *= .368; | |
| j *= i / 100 + 1; | |
| } | |
| return (0); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment