0
Which is the best app to learn algorithm and flowchart
5 Respostas
+ 1
There is an app called "Algorithms: Explained and Animated " on Google Play Store.
It is pretty good.
Link: https://play.google.com/store/apps/details?id=wiki.algorithm.algorithms
0
Algorithm activity 6
Modify your flow chart on activity 5 to allow repetitive computation for the student final grade. Your new algorithm should allow
0
# Find maximum of two numbers
# Step 1: Input numbers
A = float(input("Enter first number (A): "))
B = float(input("Enter second number (B): "))
# Step 2: Compare
if A > B:
Max = A
else:
Max = B
# Step 3: Display result
print("Maximum number is:", Max)
0
âââââââââââââ
â Start â
âââââââŹââââââ
â
âŒ
âââââââââââââââââââ
â Input A and B â
âââââââŹââââââââââââ
â
âŒ
âââââââââââââââââââ
â Is A > B ? â
âââââŹââââââŹââââââââ
âYes âNo
⌠âŒ
âââââââââââ âââââââââââ
â Max = A â â Max = B â
ââââââŹâââââ ââââââŹâââââ
â â
âââââââŹââââââ
âŒ
âââââââââââââââââââ
â Display Max â
âââââââŹââââââââââââ
â
âŒ
âââââââââââââ
â Stop â
âââââââââââââ