URI 1016 Distance Solution in C++
URI 1016 Solution š Distancešin C++
URI Online Judge Solution 1016 Distance in C++
Before seeing the solution make sure that you tried enough. Don’t paste the whole code, just find out the logic. If you stuck in trouble, just inform me on comment.
Before seeing the solution make sure that you tried enough. Don’t paste the whole code, just find out the logic. If you stuck in trouble, just inform me on comment.
URI Online Judge Solution 1016 Distance in C++
#include<bits/stdc++.h>
using namespace std;
int main(){
int N,Y=0;
cin>>N;
Y=N*2;
cout<<Y<<" minutos"<<endl;
return 0;}
using namespace std;
int main(){
int N,Y=0;
cin>>N;
Y=N*2;
cout<<Y<<" minutos"<<endl;
return 0;}
No comments