Click here to Skip to main content
15,896,111 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
The following program line that starts with "ratio" is supposed to =
5√M/m
where M is maxSpeedRpm and m minSpeedRpm. Please help, I am going cross eyed trying to work this out.






#include <iostream>
#include <cmath>
using namespace std;
int
main0()
{
    int maxSpeedRpm, minSpeedRpm;
    double ratio;
    
    cout << "Enter the maximum speed in revolutions per minute";
    cin >> maxSpeedRpm;
    cout << "Enter the minimum speed in revolutions per minute";
    cin >> minSpeedRpm;
    
    ratio = sqrt((pow(maxSpeedRpm/minSpeedRpm),(1/5)));

    cout << "The calculated ratio is" << ratio;
       
    cin.ignore();
    cin.get();
    return 0;
}
Posted
Comments
Sergey Alexandrovich Kryukov 22-Feb-13 1:35am    
Not a question. Gibberish. Very bad. You did not even report the error message.
—SA
Sarah Trattner 22-Feb-13 1:38am    
whatever...I'll wait for someone that can identify the problem.
Sergey Alexandrovich Kryukov 22-Feb-13 1:42am    
"Can identify"... Amazing...
Declare all variables you use...
—SA
Sarah Trattner 22-Feb-13 1:38am    
15 C:\Dev-Cpp\ratio.cpp no matching function for call to `pow(int)'
Sergey Alexandrovich Kryukov 22-Feb-13 1:46am    
Do you at least understand what's power?!!
It's b<small><sup>x</sup></small>, where b is the base, x is exponent. So, there should be two parameters, not one!
See
http://www.cplusplus.com/reference/cmath/pow/

—SA

If you intersperse some blanks you can see for yourself why it doesn't compile:
C++
ratio = sqrt( (pow(maxSpeedRpm/minSpeedRpm), (1/5)) );

So you got the parenthese wrong. You probably meant to write:
C++
ratio = sqrt (pow ((maxSpeedRpm/minSpeedRpm), 0.2));
 
Share this answer
 
Comments
Mike M.00 22-Feb-13 12:05pm    
Yes, white space is your friend - computers don't care, but brains see the structure better.

HINT to the unseasoned or occasional programmer: Pay close attention to at least the first error message generated by the compiler - make sure you know what it means as it will lead you in the direction of your solution. In this case "no matching function for call to 'pow(int)'" was trying to tell you the compiler could not find a function called 'pow' which took one integer parameter (see hemantrautela's Solution 1).

Another trick I like to use to debug complicated math expressions, is to define a series of temporaries and build up the final expression one step at a time. This allows me to see all the intermediary values and it ends up isolating any error messages to exactly and only the offending item, e.g.:
int t1 = maxSpeedRpm/minSpeedRpm; // Here you would see t1 is zero for some data like 5/7, so this needs to be float.
float t2 = pow ( t1, 0.2 ); // And actually pow() needs a double as first argument, but comilers convert it for you.
float t3 = sqrt ( t2 );
A debugger allows you to see each value and understand what's working, what's not.
Mike M.
nv3 22-Feb-13 12:35pm    
Very good points, Mike. I hope the original poster will heed your advice!
pow() function having two arguments...as below
c++ , cmath
C#
double pow (      double base,      double exponent );
long double pow ( long double base, long double exponent );
      float pow (       float base,       float exponent );
     double pow (      double base,         int exponent );
long double pow ( long double base,         int exponent );



Thanks
Asp.Net C# Help Blog[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900