Skip to content

Instantly share code, notes, and snippets.

@sthoshi
Created August 16, 2017 14:06
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 sthoshi/2ea9ec42776358e619c921d8a77f66db to your computer and use it in GitHub Desktop.
Save sthoshi/2ea9ec42776358e619c921d8a77f66db to your computer and use it in GitHub Desktop.
#include<stdio.h>
int main(){
int a,b,d,r;
double f;
scanf("%d %d",&a,&b);
d=a/b;
r=a%b;
f=(double)a/b;
printf("%d %d %.5f\n",d,r,f);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment