#include<stdio.h> main() { float a,b,c; int t,s; printf("put two number:"); scanf("%f%f",&a,&b); c=a/b; t=c*100; s=t%10; printf("%f,%d",c,s); getch(); }