473,385 Members | 1,764 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,385 software developers and data experts.

Need some help

I'm trying to create a small program for a beginner's C++ class. Basically, we have to take user input of 2 numbers and then output the sum, difference, product, and quotient of each. I'm trying to make mine a bit more user friendly and slightly more difficult that what is probably expected. This is what I have:

#include <iostream>

using namespace std;

int main(void)
{
char ans1; //I go ahead and declare my variables...
double ans2;
double ans3;
float add;
float subtract;
float mult;
float divide;
float remainder;

/*--Starting here, I prompt the user to specify what they want to do with
their two number choices--*/
cout<<" ------------------------------------------- ";
cout<<" Simple math ";
cout<<" ------------------------------------------- ";
cout<<"Choose what you want to do with two numbers:\n\na. Addition\nb. Subtraction\nc. Multiplication\nd. Division";
cout<<"\n\nChoose a, b, c, or d: ";
cin>>ans1;
if(ans1=='a'){ //This line starts my if loop that branches the programs actions according to the user's input.
cout<<"You've chosen Addition. Please enter two numbers separated by spaces:\n\n";
cin>>ans2>>ans3;
cout<<"The sum is "<<ans2+ans3<<".";
cin.get();
}
else if(ans1=='b'){
cout<<"You've chosen Subtraction. Please enter two numbers separated by spaces:\n\n";
cin>>ans2>>ans3;
cout<<"The difference is "<<ans2-ans3<<".";
cin.get();
}
else if(ans1=='c'){
cout<<"You've chosen Multiplication. Please enter two numbers separated by spaces:\n\n";
cin>>ans2>>ans3;
cout<<"The product is "<<ans2*ans3<<".";
cin.get();
}
else if(ans1=='d'){
cout<<"You've chosen Division. Please enter two numbers separated by spaces:\n\n";
cin>>ans2>>ans3;
remainder=ans2%ans3;
if (remainder==0){
cout<<"The quotient is "<<ans2/ans3<<".";
cin.get();
else {
cout<<"The quotient is "<<ans2/ans3<<"With a remainder of "<<remainder".";
cin.get();
}
}
cin.get();
}
cin.get();
return 0;
}

Dev-C++ keeps giving me errors. Anyone care to hlep?
Sep 4 '08 #1
3 1294
scruggsy
147 100+
Dev-C++ keeps giving me errors. Anyone care to hlep?
It will be easier for people to help you if you put your code inside CODE tags, and post the text of the errors you are receiving.
Sep 4 '08 #2
Studlyami
464 Expert 256MB
There are a couple of problems first when posting code please use the code tags provided it makes it much easier to read.
Now
cout<<"The quotient is "<<ans2/ans3<<"With a remainder of "<<remainder".";
needs to be
Expand|Select|Wrap|Line Numbers
  1. cout<<"The quotient is "<<ans2/ans3<<"With a remainder of "<<remainder<<".";
  2.  
The modules operator works with integer values only so
remainder=ans2%ans3;
needs to be
remainder=(int)ans2%(int)ans3;

and finally you need to check your brackets check my comments for where
Expand|Select|Wrap|Line Numbers
  1. else if(ans1=='d'){
  2. cout<<"You've chosen Division. Please enter two numbers separated by spaces:\n\n";
  3. cin>>ans2>>ans3;
  4. remainder=ans2%ans3;
  5. if (remainder==0){
  6. cout<<"The quotient is "<<ans2/ans3<<".";
  7. cin.get();
  8. //NEEDS A END BRACKET from the bottom.
  9. else {
  10. cout<<"The quotient is "<<ans2/ans3<<"With a remainder of "<<remainder".";
  11. cin.get();
  12. } //one bracket needs to be moved up
  13. }
  14.  
Sep 4 '08 #3
whodgson
542 512MB
You're certainly on the right track
void is not required as a main() argument.
Don't declare + - * / % opreators just........ double x,y; and..... char ans;
It seems a bit long winded
1. get the two numbers x,y
cin>>x>>y;
2.get add,subtract,mult or divide requirement
cin>>ans;
3.if (ans=a)cout<<"Result= "<<x+y<<endl;
if(ans=m)cout<<"Result= "<<x*y<<endl;
etc.
4.cout<<"Remainder = "<<x%y<<endl;
Expand|Select|Wrap|Line Numbers
  1. ps. You should wrap your code in code tags
Sep 4 '08 #4

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: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
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: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

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.