Computer Science, asked by nittuthakur27, 2 months ago

Draw a flowchart to find the maximum number of a given series of data. ​

Answers

Answered by kala8858168
7

Answer:

Step 1 : Start.

Start 2 : Input A, B, C.

Start 3 : Let max = A.

Start 4 : if B > max then max = B.

Start 5 : if C > max then max = C.

Start 6 : Output max is largest.

Start 7 : Stop.

Answered by amanpanday2811
1

Answer:

Algorithm

Explanation:

The word Algorithm means ” A set of finite rules or instructions to be followed in calculations or other problem-solving operations ” Or ” A procedure for solving a mathematical problem in a finite number of steps that frequently involves recursive operations”. Therefore Algorithm refers to a sequence of finite steps to solve a particular problem. Algorithms can be simple and complex depending on what you want to achieve. It can be understood by taking the example of cooking a new recipe. To cook a new recipe, one reads the instructions and steps and executes them one by one, in the given sequence. The result thus obtained is the new dish is cooked perfectly. Every time you use your phone, computer, laptop, or calculator you are using Algorithms. Similarly, algorithms help to do a task in programming to get the expected output. The Algorithm designed are language-independent, i.e. they are just plain instructions that can be implemented in any language, and yet the output will be the same, as expected. As one would not follow any written instructions to cook the recipe, but only the standard one. Similarly, not all written instructions for programming is an algorithms. In order for some instructions to be an algorithm.

Steps-

Step 1.Start

Step 2 : Input A, B, C.

Step 3 : Let max = A.

Step  4 : if B > max then max = B.

Step  5 : if C > max then max = C.

Step  6 : Output max is largest.

Step  7 : Stop.

Display result.

For more refers to-

brainly.in/question/10268226?referrer=searchResult

brainly.in/question/12085446?referrer=searchResults

#SPJ2

Similar questions