Flowchart Design using Raptor - Flowchart Interpreter
Exploring the Interface
Menu Options
Documentation
Flowchart Symbols
Flowchart Execution
Code Generation
Basic Problems
Greet
Greet a specific user (Output Formatting)
Arithmetic Operations
Built-in Mathematical Functions
Non Trigonometric
Trigonometric
Sample Examples:
Design a flowchart to evaluate the polynomial
f(x)= x^3 + 2 X^2 + 3 X - 10 for x in the range [1, 1000]
Determining whether a number is Even or Odd
Finding the greatest of 3 numbers
Testing Divisibility with 2 and 3 but not 4
Given 2 ints, a and b, return True if one if them is 10 or if their sum is 10.
makes10(9, 10) → True
makes10(9, 9) → False
makes10(1, 9) → True
Given 2 int values, return True if one is negative and one is positive. Except if the parameter "negative" is True, then return True only if both are negative.
pos_neg(1, -1, False) → True
pos_neg(-1, 1, False) → True
pos_neg(-4, -5, True) → True
Given an int n, return True if it is within 10 of 100 or 200. Note: abs(num) computes the absolute value of a number.
near_hundred(93) → True
near_hundred(90) → True
near_hundred(89) → False
Modular Solution Design ( using Procedures )
Designing procedures for Basic Arithmetic operations
RESULT :
All the above programs have been worked out and saved here.