Computers & Internet Logo

Related Topics:

Posted on Jun 28, 2011
Answered by a Fixya Expert

Trustworthy Expert Solutions

At Fixya.com, our trusted experts are meticulously vetted and possess extensive experience in their respective fields. Backed by a community of knowledgeable professionals, our platform ensures that the solutions provided are thoroughly researched and validated.

View Our Top Experts

Program that will accepts 2 numbers and will display the sum,difference,product and quotient by the use of flow chart?

  • Anonymous Jun 15, 2013

    but how to use a correct flow chart? can you give me some example of this program.

  • Anonymous Jun 15, 2013

    please.

×

1 Answer

Anonymous

Level 2:

An expert who has achieved level 2 by getting 100 points

All-Star:

An expert that got 10 achievements.

MVP:

An expert that got 5 achievements.

Vice President:

An expert whose answer got voted for 100 times.

  • Expert 231 Answers
  • Posted on Jun 28, 2011
Anonymous
Expert
Level 2:

An expert who has achieved level 2 by getting 100 points

All-Star:

An expert that got 10 achievements.

MVP:

An expert that got 5 achievements.

Vice President:

An expert whose answer got voted for 100 times.

Joined: Jun 27, 2011
Answers
231
Questions
0
Helped
62666
Points
731

You can do this pretty easily in a spreadsheet program such as excel, open office or numbers on a mac. Simply use two cells for the numbers you would like as an input and then input formulas for the sum, difference, product and quotient in 4 other cells. Examples:

(This assumes you use A1 and B1 to hold your input numbers)
For sum you would input the formula: =A1+B1
For difference: =A1-B1
For product: =A1*B1
For quotient: =A1/B1

To get this into a flowchart simply go into "Insert > Chart" and select the chart you want to use with the correct options.

I hope this helps, if it does, please give a thumbs up!

Add Your Answer

×

Uploading: 0%

my-video-file.mp4

Complete. Click "Add" to insert your video. Add

×

Loading...
Loading...

Related Questions:

1helpful
1answer

When the product of 4 and 4 is divided by the sum of 4 and 4 what is the quotient?

the Quotient is the answer to a division problem. so

(4 X 4) / (4 +4) =
16/8=
2
so the quotient is 2
0helpful
1answer

What is the sum if the quotient of 2/3 and 7/12 is added to 17/14

Proceed step by step.
Quotient of (2/3) by (7/12) =(2/3)/(7/12)=(2/3)*(12/7)=8/7
Sum of 8/7 and 17/14 is 8/7+17/14=16/14+17/14=(33/14)
1helpful
1answer

What does product mean in maths

When you perform an arithmetic operation such as addition, subtraction, multiplication, or division the result has a specific name. The result of addition is called the sum; the result of a subtraction is called the difference; the result of multiplication is the PRODUCT. Finally the result of a division is the quotient.
2helpful
2answers

Write a program that accepts two numbers a and b and divides a by b and displays the quotient and the remainder..

BASIC

a = 0
b = 0
c = 0
input "First number "; a
input "Second number "; b
c = int ( a / b )
d = ( a / b ) - c
print "Quotient: "; c
print "Remainder: "; d
end
7helpful
5answers

Problem solving Strategy guess and test

The two numbers 3 and 24

3 multiplied by 24 =72
24 divided by 3 =8

Enjoy, and thanks for choosing Fixya!
1helpful
1answer

How i make calculator by using source code in c++?

hi,
here is the code u looking for

#include <iostream.h>
using namespace std;
float sub (float a, float b)
{
float dif;
dif=a - b;
return dif;
}

float addition (float c, float d)
{
float sum;
sum=c+d;
return sum;
}

float divi (float e, float f)
{
float quo;
quo = e/f;
return quo;
}
float multi (float f, float g)
{
float pro;
pro=f * g;
return pro;
}

int main ()
{
float a;
float b;
float opt;

cout << "Welcome to the calculator" << endl;
cout << "There are four options " << endl;
cout << "Option 1 is subtraction, Option 2 is addition, option 3 is division, and option 4 is multiplication " << endl;
cout << "Enter your option and two digits " << endl;
cin >> opt >> a >> b;


if (opt == 1)
{
float temp= sub (a, b);
cout << "Your difference is " << temp << endl;
}

else
if (opt==2)
{
float temp2= addition (a, b);
cout << "Your sum is " << temp2 << endl;
}
else
if (opt == 3)
{
float temp3= divi (a,b);
cout << "Your quotient is " << temp3 << endl;
}
else
if (opt == 4)
{
float temp4= multi (a,b);
cout << "Your product is " << temp4 << endl;
}
else
{
cout << "That function is not supported in calculator!" << endl;
}
cout << "Thank you for using calculator" << endl;

return 0;
}

Thanks!
0helpful
1answer

Pls. help me

Q.2#  Dim n, sum as Double
Dim i as Integer
n=100
sum=0

for i=1 to n
sum=sum+1/n
next i

Q.3#  Dim sum as Double
sum=0
for i=1 to 99
if i%2 <> 0 then sum=sum+i end if
next i
0helpful
1answer

Flowcharting

Input FirstNumber
Input SecondNumber
Sum= FirstNumber + SecondNumber
If FirstNumber > SecondNumber
Diff=FirstNumber-SecondNumber
Else
Diff=SecondNumber - FirstNumber
END IF
Product = FirstNumber * SecondNumber
0helpful
2answers

Java

you can dowload the latest Java if you have issues regarding with your java installed.

visit http://java.com/en/

hope this helps.
Not finding what you are looking for?

1,269 views

Ask a Question

Usually answered in minutes!

Top Computers & Internet Experts

Grand Canyon Tech
Grand Canyon Tech

Level 3 Expert

3867 Answers

Brad Brown

Level 3 Expert

19187 Answers

Cindy Wells

Level 3 Expert

6688 Answers

Are you a Computer and Internet Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

Loading...