C and C++

Moderators: None (Apply to moderate this forum)
Number of threads: 28691
Number of posts: 94711

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
Sauqre calculation & Simplify Posted by tokoG on 20 Apr 2006 at 10:48 PM
Hi!

Have some questions. Could anybody please advise?

This is so called modular programming I think, I just need to finished coding one function.
The whole programme promts the user to enter the numerator and denominator, then squares it, simplies it, then value return back to the main to print the result.


If you enter...

scanf("%d", &temp.numerator); (....2 for example)
scanf("%d", &temp.denominator); (....3 for example)


Then the output is;

The sauqre of 2/3 is 4/9



Pls let me know if you need to see the entire code then I will post but this is the function I need to code in red.

RATIONAL rat_simplify(RATIONAL a) {
  int temp_hcf;
  RATIONAL temp;

   temp_hcf = HCF (a.numerator, a.denominator);
   temp.numerator = a.numerator / temp_hcf;
   temp.denominator = a.denominator /temp_hcf;
   return temp;
}

RATIONAL squareRational (RATIONAL rat)
{
   RATIONAL temp;
   
   
   /**** BELOW : CODE MY SELF*******/
   //Calculate the square
   temp.numerator = rat.numerator * rat.numerator;
   temp.denominator = rat.denominator * rat.denominator;

   temp = rat_simplify (temp); //Pass the values to the function to simplify
   
   /**** ABOVE: CODE MY SELF****/
   

   return temp;//Return squared value back to the main
} 



1) User input of numerator(2) and denominator(3) are being passed to the function in the parameter RATIONAL rat
2) After the calculation, I need to simplify it. For numerator 2 and denominator 3, there is no need to simplify but for example if that was 6/9, the result is 36/16, so it should be simplified to 9/4 in the function rat_simplify

My question is,[/red]
Can I use the same temp to receive the value back from the function rat_simplify and pass it back to the main?.... or, should I change the variable name? But then, it's in the template that I need to return the variable temp .


Thanks!!
Report
Re: Sauqre calculation & Simplify Posted by tsagld on 21 Apr 2006 at 12:06 AM
: Hi!
:
: Have some questions. Could anybody please advise?
:
: This is so called modular programming I think, I just need to finished coding one function.
: The whole programme promts the user to enter the numerator and denominator, then squares it, simplies it, then value return back to the main to print the result.
:
:
: If you enter...
:
: scanf("%d", &temp.numerator); (....2 for example)
: scanf("%d", &temp.denominator); (....3 for example)
:

:
: Then the output is;
:
: The sauqre of 2/3 is 4/9
:

:
:
: Pls let me know if you need to see the entire code then I will post but this is the function I need to code in red.
:
:
: RATIONAL rat_simplify(RATIONAL a) {
:   int temp_hcf;
:   RATIONAL temp;
: 
:    temp_hcf = HCF (a.numerator, a.denominator);
:    temp.numerator = a.numerator / temp_hcf;
:    temp.denominator = a.denominator /temp_hcf;
:    return temp;
: }
: 
: RATIONAL squareRational (RATIONAL rat)
: {
:    RATIONAL temp;
:    
:    
:    /**** BELOW : CODE MY SELF*******/
:    //Calculate the square
:    temp.numerator = rat.numerator * rat.numerator;
:    temp.denominator = rat.denominator * rat.denominator;
: 
:    temp = rat_simplify (temp); //Pass the values to the function to simplify
:    
:    /**** ABOVE: CODE MY SELF****/
:    
: 
:    return temp;//Return squared value back to the main
: } 
: 

:
:
: 1) User input of numerator(2) and denominator(3) are being passed to the function in the parameter RATIONAL rat
: 2) After the calculation, I need to simplify it. For numerator 2 and denominator 3, there is no need to simplify but for example if that was 6/9, the result is 36/16, so it should be simplified to 9/4 in the function rat_simplify
:
: My question is,[/red]
: Can I use the same temp to receive the value back from the function rat_simplify and pass it back to the main?.... or, should I change the variable name? But then, it's in the template that I need to return the variable temp .
:

Sure you can use the same variable name. They have the same name but are different variables, because they are declared in the function itself. I.e. 'local variables'. Passing the variables between functions only passes the value of the variables. They get copied from one variable to another.
Your code seems fine.


Greets,
Eric Goldstein
www.gvh-maatwerk.nl


Report
Re: Sauqre calculation & Simplify Posted by tokoG on 22 Apr 2006 at 8:00 PM
:
: Sure you can use the same variable name. They have the same name but are different variables, because they are declared in the function itself. I.e. 'local variables'. Passing the variables between functions only passes the value of the variables. They get copied from one variable to another.
: Your code seems fine.
:

:

Hi Eric

Thanks for the advice.
Yes my code worked fine!! Yepiee!!! So happy!!
Understand about the 'local variable'. :)

tokoG



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.