Skip to content

Instantly share code, notes, and snippets.

@ushu
Created October 28, 2013 10:39
Show Gist options
  • Save ushu/7194729 to your computer and use it in GitHub Desktop.
Save ushu/7194729 to your computer and use it in GitHub Desktop.
UVA basic
#include <iostream>
#include <string>
std::string compute(std:string in) {
return "";
}
int main() {
while(true) {
std::string input;
std::getline(std::cin, input);
if(input == "") break;
std::cout << compute(input);
std::cout << std::endl;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment