Uri solution 1014 Consumption Get link Facebook X Pinterest Email Other Apps September 29, 2018 #include<stdio.h> int main() { float x,y,k; scanf("%f %f",&x,&y); k=x/y; printf("%.3f km/l\n",k); return 0; } Get link Facebook X Pinterest Email Other Apps Comments
Codeforces solution 112A Petya and Strings November 30, 2018 #include <stdio.h> int main () { int n ; char a [ 200 ], b [ 200 ]; gets ( a ); gets ( b ); n = strcmpi ( a , b ); printf ( "%d\n" , n ); return 0 ; } Read more
Codeforces solution 630A Again Twenty Five! September 29, 2018 #include < bits / stdc ++. h > using namespace std ; int main () { long long int n ; cin >> n ; cout << 25 << endl ; return 0 ; } Read more
Comments
Post a Comment