Skip to content

Commit

Permalink
Add multiplication feature, closes ChicoState#1
Browse files Browse the repository at this point in the history
  • Loading branch information
BraulioL committed Sep 9, 2024
1 parent 09d2326 commit 60c30e8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ int main(){
std::cout<< (first+second) << std::endl;
std::cout<< "Subtraction: "<< first << "-" << second << "=";
std::cout<< (first-second) << std::endl;
std::cout<< "Multiuplication: "<< first << "*" << second << "=";
std::cout<< (first*second) << std::endl;

return 0;
}

0 comments on commit 60c30e8

Please sign in to comment.