ronniejuan / PB-pseudocode

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Inputs and Outputs

Write down pseudo-code on pen and paper for the following patterns:

Input => Output 2, 5 => 5 0, 100 => 100 52, 35 => 52

Solution 1 Output must Print the grater number between 'a' and 'b' a) 5 b)100 c)52

Input => Output 5, 5 => true 40, 40 => true 50, 51 => false

Solution 2 Print true if booth numbers are equals. a) true b)true c)False

Input => Output 110, 100 => true 150, 100 => true 50, 100 => false

Solution 3 Output must print 'True' if first a > b a)true b)true c)false

About