chore: fix readme and add jackolantern program

main
CrimsonTome 2023-02-06 00:19:00 +00:00 committed by Rowan Clark
parent cfed12f8ea
commit 8d207f2c9f
No known key found for this signature in database
GPG Key ID: F620D51904044094
2 changed files with 11 additions and 2 deletions

View File

@ -0,0 +1,9 @@
#include <iostream>
using namespace std;
int main(){
int x, y, z;
cin >> x >> y >> z;
cout << x*y*z << endl;
return 0;
}

View File

@ -4,12 +4,12 @@
## System requirements
- A C++ compiler such as GCC
- A C++ compiler such as G++ (should come with GCC)
## Development
- edit the `main.cpp` files in each folder
- run `gcc` on them
- run `g++` on them
- if no arguemnts, run `./a.out` to run the program
## License