Skip to content

Instantly share code, notes, and snippets.

@itsjohncs
Created October 15, 2012 04:50
Show Gist options
  • Save itsjohncs/3890863 to your computer and use it in GitHub Desktop.
Save itsjohncs/3890863 to your computer and use it in GitHub Desktop.
CS 10 SI Classroom Session 3 - cin Quiz Question
#include <iostream>
using namespace std;
int main() {
double radius;
string bulk;
cin >> radius;
cin >> bulk;
cout << "radius = " << radius
<< "\nbulk = " << bulk << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment