Created Header for class and random printing in main
This commit is contained in:
15
main.cpp
15
main.cpp
@@ -0,0 +1,15 @@
|
|||||||
|
#include <iostream>
|
||||||
|
#include "test.cpp"
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
char c;
|
||||||
|
for(int i = 0; i < 10; i++) {
|
||||||
|
c = (i % 2 == 0) ? 'E' : 'O';
|
||||||
|
cout << c << "\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user