TestingDocs.com
Testing Questions
  • Home
  • Automation
    • Selenium
    • TestNG
  • Tutorials
    • MySQL Tutorials
    • TestLink
    • Maven
    • Git
  • Flowcharts
    • Flowgorithm
    • Raptor

RAPTOR Flowcharts

Flowchart that finds the larger of the two numbers

Flowcharts

Problem

Design a flowchart that finds and displays the larger of the two numbers provided by the user. Let’s assume the numbers are x and y. The flowchart prompts the user for the values x and y.

IPO chart

Consider modeling an IPO chart for the flowchart before the flowchart design. Think about the input to the flowchart, processing statements, and the output of the flowchart. IPO chart is a handy tool to visualize in a tabular format.

 

InputProcess Output
Input to the flowchart.Computations that are done in the flowchart.Output displayed by the flowchart

Pseudocode

START
DECLARE x,y

INPUT x
INPUT y
IF x != y THEN
         IF x > y THEN
             DISPLAY "The larger of the two numbers " + x + " 
 and " + y + " is " + x
         ELSE
             DISPLAY "The larger of the two numbers " + x + " 
 and " + y + " is " + y
END IF
ELSE
       DISPLAY "Both the numbers are equal"
END IF
END

Flowchart

We will prompt the user to enter two numbers x and y.

We will check if the numbers are equal. If not then we will check for larger of the two numbers.

Design a flowchart

Sample Output

Let’s run the flowchart with sample test cases to verify that it’s working as intended. If you find that the flowchart is not working as intended in the testing, we may need to verify and debug the flowchart.

Debugging a flowchart: https://www.testingdocs.com/debugging-a-raptor-flowchart/

 

Larger of Two Numbers

 

The larger of the two numbers 7 and 17 is 17
—-Run complete. 9 symbols evaluated.—-
Both the numbers are equal
—-Run complete. 8 symbols evaluated.—-
The larger of the two numbers 89 and 73 is 89
—-Run complete. 9 symbols

 

Raptor Tutorials on this website can be found at:

https://www.testingdocs.com/raptor-a-flowchart-tool/

RAPTOR official website: https://raptor.martincarlisle.com/

Related Posts

Bull

RAPTOR Flowcharts /

How to draw Bull’s Eye Raptor Graphics Flowchart

Weekly Gross Pay Raptor Flowchart

RAPTOR Flowcharts /

Weekly Gross Pay Raptor Flowchart

Reptition Structure

RAPTOR Flowcharts /

How to add repetition structure to the Raptor Flowchart

Selection Symbol

RAPTOR Flowcharts /

How to use selection symbol in Raptor flowchart

Calculator Raptor Flowchart

RAPTOR Flowcharts /

Calculator Raptor Flowchart

‹ Find a Number is Even or Odd Raptor Flowchart› Calculator Raptor Flowchart

Recent Posts

  • How to Hide Taskbar on Windows 11
  • How to edit PATH variable on Windows 11?
  • Enable BitLocker Drive Encryption on Windows 11
  • How to lock Windows 11 PC
  • How to Add, Remove Widgets on Windows 11
  • How to Rename PC on Windows 11?
  • How to Shut down Windows 11 PC?
  • How to launch command prompt on Windows 11
  • Install Windows 11 Insider Preview on Virtual Machine
  • How to Create a Restore point in Windows 11

Back to Top

Links

  • Contact
  • Privacy Policy
  • Cookie Policy

www.TestingDocs.com

Go to mobile version