Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
Resource icon

My basic calculator code for C++

Hello Coders!

Here's my calculator code if you wish to experiment or build onto it! :)
C++:
//
// Created by malcolm on 2020-07-31.
//
// Advance Calculator

#include <iostream>
using namespace std;

int main(){
    int firstNum {0}...
You do not have permission to view the full content of this resource. Log in or register now.
Author
Malcolm
Views
647
First release
Last update
Rating
0.00 star(s) 0 ratings

More resources from Malcolm

Latest updates

  1. Use multiple math operators without exiting console

    // // Created by malcolm on 2020-07-31. // // Advance Calculator #include <iostream> using...
Back
Top Bottom