C++ console calculator program 🖩

Поділитися
Вставка
  • Опубліковано 3 гру 2024

КОМЕНТАРІ • 34

  • @BroCodez
    @BroCodez  2 роки тому +19

    # include
    int main() {
    char op;
    double num1;
    double num2;
    double result;
    std::cout op;
    std::cout > num1;
    std::cout > num2;
    switch(op){
    case '+':
    result = num1 + num2;
    std::cout

    • @Adoof_3.0
      @Adoof_3.0 2 роки тому

      Thanks

    • @hardikg
      @hardikg 2 роки тому

      Hey Bro! Why this video appears to be unlisted? Any issue with the content or a mistake?
      Really Love your tutorials! Amazing!

    • @jibob6959
      @jibob6959 Рік тому

      thank you

    • @yourfriendleyduck1
      @yourfriendleyduck1 Рік тому

      How to copy??????????????????????????????????????????????

    • @GeoGraphyGuy12
      @GeoGraphyGuy12 Місяць тому

      @@yourfriendleyduck1 you cant be serious

  • @rayjohndimasangal775
    @rayjohndimasangal775 Рік тому +5

    tried doing the calculator first before watching the vid
    #include
    using namespace std;
    int main() {
    double a;
    double b;
    char operation;
    cout > a;
    cout > b;
    cout > operation;
    switch (operation) {
    case '+':
    cout

  • @shadowfall1700
    @shadowfall1700 Рік тому +3

    thanks for teaching me C++ you're a king

  • @arokurdi3848
    @arokurdi3848 3 місяці тому +1

    والله بەتەڵ بژی 🎉

  • @sgamb2985
    @sgamb2985 Рік тому +2

    Random comment:: I've been finding bro code is the best way to learn new programming languages. Thanks for the awesome vids!

  • @vmook655
    @vmook655 6 місяців тому +1

    Did this before watching the video:
    #include
    #include
    int main() {
    char selectedOperator;
    double a;
    double b;
    double result;
    std::cout a;
    std::cout selectedOperator;
    std::cout b;
    switch (selectedOperator)
    {
    case '+':
    result = a + b;
    break;
    case '-':
    result = a - b;
    break;
    case '*':
    result = a * b;
    break;
    case '/':
    result = a / b;
    break;
    default:
    break;
    }
    std::cout

  • @data_science_uzbekistan
    @data_science_uzbekistan Рік тому

    that's awesome bro. Now I will tel you 1 thing. when num1 is divided by num2, and num1 is equal to 4 and num2 is equal to 0. in the end answer will be infinity right ?

    • @LSDStudiosParahill
      @LSDStudiosParahill 3 місяці тому

      My clumsy way of solving it:
      case '*':
      result = num1 * num2;
      if (num1 == 0){
      result = 0;
      }
      if (num2 == 0){
      result = 0;
      }
      std::cout

  • @AniReactz
    @AniReactz Рік тому +1

    #include
    int main() {
    double x;
    double y;
    int choice;
    std::cout > x;
    std::cout > y;
    std::cout

    • @myownaccountnoazzedine
      @myownaccountnoazzedine Місяць тому

      ain't no way if statements works in switch
      and WAT DA JAWN DAT IS VEERY CONFUSING

    • @AniReactz
      @AniReactz 29 днів тому

      @myownaccountnoazzedine they work, and I agree it's indeed confusing I was just messing

  • @FrederikWollert
    @FrederikWollert 8 місяців тому

    Nice Video.

  • @tanvirsahrierjishan778
    @tanvirsahrierjishan778 5 місяців тому

    i used if for fast and also did great and your is the fastest

  • @yellowhellow-wi9gi
    @yellowhellow-wi9gi 4 місяці тому

    thank you

  • @AhmedMohamedP
    @AhmedMohamedP 2 роки тому +3

    why 'op' was a char not a string?

    • @raiden542
      @raiden542 2 роки тому +2

      because its one caracter

    • @raiden542
      @raiden542 2 роки тому +5

      and because switches dont work with stings

    • @myownaccountnoazzedine
      @myownaccountnoazzedine Місяць тому

      Because char is best for 1 character, but it's also correct (Yes i know i'm late)

  • @zabiullahsafdari-to8zw
    @zabiullahsafdari-to8zw 11 місяців тому

  • @wttcs-_-9451
    @wttcs-_-9451 6 місяців тому

    std::cout

  • @logicalspaghetti
    @logicalspaghetti Рік тому

    spaghetti

  • @karhez163
    @karhez163 2 роки тому

    Random comment

  • @worstDevYT
    @worstDevYT 7 місяців тому

    abi ezik misin switchin dışına yazsana