Skip to content

Commit 58e3237

Browse files
Added C++ files that demonstrates the product (*) operation in C++.
1 parent 7185759 commit 58e3237

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

0a.cpp

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#include <iostream>
2+
using namespace std;
3+
4+
int main() {
5+
int x = 5;
6+
int y = 2;
7+
cout << x * y;
8+
return 0;
9+
}

0a.exe

70.8 KB
Binary file not shown.

0 commit comments

Comments
 (0)