Skip to content

Instantly share code, notes, and snippets.

@icecreammatt
Created September 12, 2013 20:44
Show Gist options
  • Save icecreammatt/6543508 to your computer and use it in GitHub Desktop.
Save icecreammatt/6543508 to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
int main() {
int total = 11;
while(total--) {
if(total == 0) {
cerr << "Unable to divide by zero\n";
} else {
cout << 100 << " / " << total << " = ";
float result = 100.00/total;
cout << result << endl;
}
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment