Skip to content

Instantly share code, notes, and snippets.

@6uclz1
Created November 23, 2015 05:18
Show Gist options
  • Save 6uclz1/94a9884a76d992251d8f to your computer and use it in GitHub Desktop.
Save 6uclz1/94a9884a76d992251d8f to your computer and use it in GitHub Desktop.
#include <stdio.h>
struct money {
int dollar;
int cent;
int rate;
} money;
int main()
{
int yen;
printf("d c r ? ");
scanf("%d %d %d",&money.dollar, &money.cent, &money.rate);
yen = (money.dollar * money.rate) + (money.cent * money.rate / 100);
printf("%d Yen\n", yen);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment