Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
tccmobile committed Aug 15, 2023
1 parent 3c3c8a1 commit e764a16
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion hello.cpp → main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ int main() {

cout << "Hello, World!" << endl;
return 0;
}`
}
13 changes: 13 additions & 0 deletions warmup.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#include <iostream>
using namespace std;

int main() {
int userNum;

cout << "Enter integer:" << endl;
cin >> userNum;

/* Type your code here */

return 0;
}

0 comments on commit e764a16

Please sign in to comment.