Skip to content

Instantly share code, notes, and snippets.

@joaogui1
Created May 10, 2016 14:04
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 joaogui1/2dc268f16a1b66146f079a90556e91eb to your computer and use it in GitHub Desktop.
Save joaogui1/2dc268f16a1b66146f079a90556e91eb to your computer and use it in GitHub Desktop.
//Autor: Roger Benet da Silva Souza IFMT-BAG
#include<cstdio>
int main(){
int number;
double time,salary;
scanf("%d",&number);
scanf("%lf",&time);
scanf("%lf",&salary);
printf("NUMBER = %d\n",number);
printf("SALARY = U$ %.2lf\n",time*salary);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment