Competitive/Collaborative Programming Class

ICPC Computer Programming Contest Prep

Problem Solving in Computer Science

Fall 2011 -- CSC 2700 Section 02

[Isaac's Home Page ]  [Mailing List ]  [Class Page ]  [Normal ]  

4/i/11830CM.cpp

/*
Chris McKnight
UVA 11830 Contract Revision
9/7/11
Homework 2
*/

#define DEBUG if(false)

#include <iostream>
#include <vector>

using namespace std;

int main(int argc, char* argv[])
{
	char d,
		 n;
	bool nonzero = false;
	cin >> d;
	DEBUG cout << "d = " << d << endl;
	while (d != '0' && n != '0')
	{
		vector<char> val;
		cin.get(n);
		DEBUG cout << "n = " << n << endl;
		cin.get(n);
		DEBUG cout << "n = " << n << endl;
		while (n != '\n')
		{
			if (n != '0' && n != d)
				nonzero = true;
			if (n != d && nonzero)
			{
				DEBUG cout << "pushing " << n << endl;
				val.push_back(n);
			}
			cin.get(n);
		}
		if (!val.size()) cout << "0";
		for (int i = 0; i < val.size(); i++)
			cout << val[i];
		cout << endl;
		cin >> d;
	}
	return 0;
}

The statements and opinions included in these pages are those of only. Any statements and opinions included in these pages are not those of Louisiana State University or the LSU Board of Supervisors.
© 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Isaac Traxler