Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.
Login
Login
OnlineGDB Q&A
Questions
Unanswered
Tags
Ask a Question
Ask a Question
How to use an if statement
0
votes
asked
Sep 28, 2018
by
Andrew Truong
(
120
points)
So I want to make a calculator that can determine what sign is used like +, -, x ,/.
If there is an easier way, please tell me
Please
log in
or register to answer this question.
1 Answer
0
votes
answered
Sep 29, 2018
by
Abhishek
(
140
points)
for simple calculator ,i think the simple way is using "switch" statement
commented
Oct 8, 2018
by
Dinesh Koppula
intialise a charecter/string variable and ask the user what operator/operation he wants to perform and then use if statements
ex: char ch;
cout<<"enter symbol of opereator"<<endl;
cin>>ch;
if(ch==*)
{
int a,b;
cout<<"enter a, b values"<<endl;
cin>>a>>b;
cout<<"multiplication"<<a*b;
}
This method works properly but instead of writing too many if loops its better we use Swith statement
to choose one among the many alternatives...
Please
log in
or register to add a comment.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and receive answers from other members of the community.
...