Calculate the multiplication of any three numbers and report whether it is an even number or not.Think about your solution (algorithm) and design your flowchart. Draw your flowchart (either on paper...

Calculate the multiplication of any three numbers and report whether it is an even number or not.Think about your solution (algorithm) and design your flowchart. Draw your flowchart (either on paper or in a software (PowerPoint) and attach a screenshot.
Based on your flowchart, write the pseudocode based on what we discussed.
Based on your pseudocode, write your code in Python.
Test your code for these cases:
- a) 10,2,1- b) 3,5,7- c) 4,6,8What kind of structures did you use? sequential? selection? or both? why?
Write a code based on the desciption below:
> Receive a 10-digit lottery ticket number from user,


if the number is equal to **"2205636346"**, print **"You are the lucky winner of 10 Million Dollars!"**


if the number is equal to **"1010101010"**, print **"You are the unlucky winner of a bullet! Bang!"**


if the number is any other ***even number***, print **"You win a chocolate dipped hotdog!"**


if the number is any ***odd number***, print **"you are odd!"**

Write a code based on the desciption below:
> Receive an integer from user between 0 to 9,


if the number is **greater than 5** and **divisible by 3**, calculate its third power and print the value with an appropriate statement


if the number is **lower than 5** and **divisible by 2**, calculate its summation with 10 and print the value with an appropriate statement


if the number is **equal to 5**, print **"High Five!"**


else, print the number itself

Test your code for these cases:- a) 6- b) 4- c) 5- d) 0
Sep 17, 2021
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here