Add Initial commit
This commit is contained in:
BIN
CM2005 Object Oriented Programming/Topic 1/1.4.1/a.exe
Normal file
BIN
CM2005 Object Oriented Programming/Topic 1/1.4.1/a.exe
Normal file
Binary file not shown.
10
CM2005 Object Oriented Programming/Topic 1/1.4.1/main.cpp
Normal file
10
CM2005 Object Oriented Programming/Topic 1/1.4.1/main.cpp
Normal file
@ -0,0 +1,10 @@
|
||||
#include <iostream>
|
||||
|
||||
int main(int argc, char const *argv[])
|
||||
{
|
||||
std::cout << "Type in a number: " << std::endl;
|
||||
int x;
|
||||
std::cin >> x;
|
||||
std::cout << "You typed: " << x << std::endl;
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user