Monday, May 1, 2017

URI Solution 1387 Og - Solution in C++ | Ad Hoc

URI Solution 1387 Og - Solution in C++ | Ad Hoc


URI Online Judge Solution1387  Og | Ad Hoc
URI Main Problem Link - https://www.urionlinejudge.com.br/judge/en/problems/view/1387

Problem Name: URI Problem 1387 og
Problem Number : URI Problem 1387Solution
Online Judge : URI Online Judge Solution
Level: Ad Hoc
Solution Language : C plus plus

URI Solution 1387 Code in CPP:


#include <iostream>

using namespace std;

int main()
{
 int x, y;

 cin >> x >> y;

 while(x != 0 || y != 0)
 {
  cout << x + y << endl;
  cin >> x >> y;  
 }
 return 0;
}

2 comments:
Write comments

To know more about the problem, give us your valuable commment. We'll try to help you. Thanks

All rights reserved ©2016 -URI ONLINE JUDGE SOLUTION | Developed by Maniruzzaman Akash

© 2016 URI ONLINE JUDGE SOLUTION. Developed by Maniruzzaman Akash | Distributed By Gooyaabi Templates
Powered by Blogger.