Translate

Views

Sunday, July 28, 2019

Solution Kattis: Roaming Romans

https://open.kattis.com/problems/romans
#include<bits/stdc++.h>
using namespace std;

double n;

int main(){
 cin >> n;
 cout <<(int)round(n*5280/4854*1000);
}
Good luck! If you need help please leave a comment :) 

No comments: