473,387 Members | 1,483 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

need help

4
Im writing a fraction calculator program I finished the program but keep getting an error on the do while function. can someone help

heres the program
Expand|Select|Wrap|Line Numbers
  1. #include <iostream>  
  2. #include <iomanip>  
  3. #include <cmath>
  4.  
  5. using namespace std;    // Internal storage 
  6.  
  7. int choice;    
  8. int num1;      
  9. int denom1;      
  10. int num2;    
  11. int denom2;    
  12. int calcden;    
  13. int calcnum;      
  14.  
  15. void menuFunction(void)
  16. {
  17.   int denominator1, numerator1,denominator2, numerator2;
  18.   char operation;
  19.   cout<<"This program will agther your input, and perform mathematical operations on fractions. you will be prompted to enter a denominator and numerator for two fractions, and hen will be asked to enter an operation you wish to perform"<<endl;
  20.   cout<<"Please enter the first numerator"<<endl;
  21.   cin>>numerator1;
  22.   cout<<"Please enter the first denominator"<<endl;
  23.   cin>>denominator1;
  24.   cout<<"Please enter the second numerator"<<endl;
  25.   cin>>numerator1;
  26.   cout<<"Please enter the second denominator"<<endl;
  27.   cin>>denominator2;
  28.   cout<<"You may choose aadition (+), subtraction (-), multiplication (*) or division (/)...please choose an operation:"<<endl;
  29.  cin>>operation;
  30.  //perform error checking, call other functions, etc...
  31. }
  32.  
  33. void add()    
  34. {
  35. calcnum=num1*denom2 + denom1*num2;    
  36. calcden=denom1*denom2;    
  37. }
  38. void subtract()        
  39. {
  40.     calcnum=num1*denom2-(denom1*num2);  
  41.     calcden=calcden=denom1*denom2;  
  42. }
  43.  
  44. void multiply()        
  45. {
  46.     calcnum= num1*num2;      
  47.     calcden=denom1 * denom2;      
  48. }
  49.  
  50. void divide()        
  51. {
  52.     calcnum= num1*denom2;      
  53.     calcden=denom1 * num2;      
  54. }
  55. void exit()      
  56. {
  57.     cout<<"Have a nice day. ";      
  58. }
  59.  
  60. void main()        
  61. {
  62.  
  63. do while(choice!='5')
  64.  {
  65.     cout<<"Enter a number from the menu: ";    
  66.     cin >> choice;
  67.     menu();        
  68.     cout<< "Enter the firts numerator: ";    
  69.     cin >>num1;      
  70.     cout<< "Enter the firts denomerator: ";  
  71.     cin>>denom1;    
  72. cout<< "Enter the second numerator: ";
  73. cin>>num2;    
  74. cout<< "Enter the second numerator: ";    
  75. cin>>denom2;    
  76. cout<<calcnum<<" /"<<calcden;      
  77. }
  78.  
  79. }
Nov 16 '08 #1
2 1114
boxfish
469 Expert 256MB
It's not
Expand|Select|Wrap|Line Numbers
  1. do while (choice != '5')
  2. {
  3.     // ...
  4. }
It goes like
Expand|Select|Wrap|Line Numbers
  1. do
  2. {
  3.     // ...
  4. } while (choice != '5');
Hope this helps.
Nov 16 '08 #2
JosAH
11,448 Expert 8TB
Possibly you mean 'while (choice != 5)' (skip that 'do') but there is a lot more wrong:

1) menu() is not a function; menuFunction() is but you only call it after the user
had to make a (blind) choice.
2) you ask the user for a second numerator but you assign it to the first numerator.

Fix those errors first, test it and see what happens.

kind regards,

Jos
Nov 16 '08 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

6
by: mike | last post by:
Hello, After trying to validate this page for a couple of days now I was wondering if someone might be able to help me out. Below is a list of snippets where I am having the errors. 1. Line 334,...
5
by: John Flynn | last post by:
hi all i'm going to be quick i have an assignment due which i have no idea how to do. i work full time so i dont have the time to learn it and its due date has crept up on me .. As follows:...
0
by: xunling | last post by:
i have a question about answering ..... this topic is "need help" what do i have to write at te topic line, !after i have klicked the "answer message" button ive tried many possibilities,...
9
by: sk | last post by:
I have an applicaton in which I collect data for different parameters for a set of devices. The data are entered into a single table, each set of name, value pairs time-stamped and associated with...
7
by: Timothy Shih | last post by:
Hi, I am trying to figure out how to use unmanaged code using P/Invoke. I wrote a simple function which takes in 2 buffers (one a byte buffer, one a char buffer) and copies the contents of the byte...
15
by: Cheryl Langdon | last post by:
Hello everyone, This is my first attempt at getting help in this manner. Please forgive me if this is an inappropriate request. I suddenly find myself in urgent need of instruction on how to...
16
by: pamelafluente | last post by:
I am still working with no success on that client/server problem. I need your help. I will submit simplified versions of my problem so we can see clearly what is going on. My model: A client...
8
by: skumar434 | last post by:
i need to store the data from a data base in to structure .............the problem is like this ....suppose there is a data base which stores the sequence no and item type etc ...but i need only...
0
by: U S Contractors Offering Service A Non-profit | last post by:
Brilliant technology helping those most in need Inbox Reply U S Contractors Offering Service A Non-profit show details 10:37 pm (1 hour ago) Brilliant technology helping those most in need ...
20
by: mike | last post by:
I help manage a large web site, one that has over 600 html pages... It's a reference site for ham radio folks and as an example, one page indexes over 1.8 gb of on-line PDF documents. The site...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.