2012-04-02, 04:43 AM
Haseo Wrote:Tell me if I'm doing it wrong.
Tl; dr I suck at making jokes and code
Code:
#include "stdafx.h"
#include <iostream>
struct Class
{
int everyClass;
int eric;
};
int main ()
{
using namespace std;
Class scouter;
cout << "What does the scouter say about eric class' power level?: ";
cin >> scouter.eric;
if (scouter.eric > 9000) {
cout << "It's over 9000!" << endl;
}
else {
cout << "Eric's weak!" << endl;
}
return 0;
}Me too bro.

