answersLogoWhite

0


Best Answer

design a flowchart that will input three numbers and get their sum. If the sum is greater than 20, then print "sum>20",else print the sum.

User Avatar

Wiki User

2013-04-21 10:33:26
This answer is:
User Avatar
Study guides

What is a programming language

What does DOS stand for

What is a software that is distributed for free

What do unix and Linux have in common

➡️
See all cards
3.91
53 Reviews

Add your answer:

Earn +20 pts
Q: Give a sample problem with the use of algorithm and flowchart symbols?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What do you mean algorithum and flowchart?

Flow Chart DefinedA flow chart is a graphical or symbolic representation of a process. Each step in the process is represented by a different symbol and contains a short description of the process step. The flow chart symbols are linked together with arrows showing the process flow direction. Common Flowchart SymbolsDifferent flow chart symbols have different meanings. The most common flow chart symbols are: Terminator: An oval flow chart shape indicating the start or end of the process.Process: A rectangular flow chart shape indicating a normal process flow step.Decision: A diamond flow chart shape indication a branch in the process flow.Connector: A small, labeled, circular flow chart shape used to indicate a jump in the process flow. (Shown as the circle with the letter "A", below.)Data: A parallelogram that indicates data input or output (I/O) for a process.Document: Used to indicate a document or report (see image in sample flow chart below).


Draw a flowchart that will add all integers from 1 to 50?

A Sample java method that can do this sum of all numbers between 1 to 50 public int sumNumbers(){ int retVal = 0; for(int i = 0; i <=50; i++){ retVal = retVal + i; } return retVal; }


Sample flow chart for library system?

Libraries are extremely useful for learning and resources that support it, however they have to be well organized to help you locate the books you need. One example of a flowchart for a library system is, start->enter library login->search for library book->find book->sign book out->end.


Algorithm to find the given number is odd or even?

The following simply uses the definition of "odd" and "even". Do an integer division by 2. If it is divisible (no remainder), it is even. Else, it is odd. Here is some sample code in Java:System.out.println(myNumber % 2 == 0 ? "It is even" : "It is odd");


What is a potential health problem that could arise from genetic engineering?

Sample answer: Engineered traits such as herbicide resistance could transfer to weeds and create "superweeds."

People also asked