christopher-siewert / cpp-calculator

Simple command line calculator
37 stars 30 forks source link

supposed tan https://github.com/christopher-siewert/cpp-calculator/blob/master/scientific.cpp#L32 #1

Open KhaledHawwas opened 2 years ago

alx1056 commented 2 years ago

Is this regarding tan referencing cos()?


  else if (input == "cos")
    {
        cos();
    }
    else if (input == "tan")
    {
        cos();
    }
KhaledHawwas commented 2 years ago

yes