#include #include #include main() { srand((unsigned) time(NULL)); float chelsea, liverpool, arsenal, tottenham; chelsea = rand() % 999 / 1000.0 + 1.001; liverpool = rand() % 999 / 1000.0 + 1.001; arsenal = chelsea * liverpool; tottenham = chelsea / liverpool; printf("Obtained numbers are %1.3f and %1.3f.\n", chelsea, liverpool); printf("Product of them is %1.3f (%1.3e).\n", arsenal, arsenal); printf("Quotient of them is %1.3f (%1.3e).\n", tottenham, tottenham); return(0); }