Buckys C++ Programming Tutorials – 7 – Basic Arithmetic | Video



Facebook – https://www.facebook.com/TheNewBoston-464114846956315/
GitHub – https://github.com/buckyroberts
Google+ – https://plus.google.com/+BuckyRoberts
LinkedIn – https://www.linkedin.com/in/buckyroberts
reddit – https://www.reddit.com/r/thenewboston/
Support – https://www.patreon.com/thenewboston
thenewboston – https://thenewboston.com/
Twitter – https://twitter.com/bucky_roberts
Proudly WWW.PONIREVO.COM

Source

READ ALSO:  Regular 12 Science Chemistry Lecture 1 {VIDEO}

42 Comments

  1. Hey, this is truly amazing bucky!
    i managed to come up with this :
    #include <iostream>

    int main()

    {

    int num1;

    int num2;

    std::cout << "Enter a number: ";

    std::cin >> num1;

    std::cout << std::endl << "Enter a number: ";

    std::cin >> num2;

    std::cout << num1 << " divided by " << num2 << " is " << num1 / num2 << " with a remainder of " << num1 % num2;

    return EXIT_SUCCESS;

    }

    I'm really new to c++ but I have already improved my knowledge by just watching one of your videos and that's incredible, thank you for this blessing.

  2. Oh god I learn java, c, c#, and all these people saying c++ is hard. It is easy as poop coming out of my butt when you learn those "easy" languages.

  3. How to get the exact float values in C++? I did 81/20 with float but it still gives me 4 as answer. Why is it so?

    could you please give me the notation for float values

Comments are closed.