Skip to content

Instantly share code, notes, and snippets.

Created January 7, 2015 12:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/4c129645e6b465ae3a0a to your computer and use it in GitHub Desktop.
Save anonymous/4c129645e6b465ae3a0a to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <cs50.h>
int main (void)
{
float f=0;
//int counter25=0;
printf("%f",f);
printf("How much money you want to get back?\n");
do
{
f = GetFloat();
printf("%f",f);
}
while(f<0);
printf("%f",f);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment