Home / Expert Answers / Computer Science / 2-2-lab-warm-up-basic-output-with-variables-this-zylab-activity-prepares-a-student-for-a-full-pro-pa709

(Solved): 2.2 LAB: Warm up: Basic output with variables This zyLab activity prepares a student for a full pro ...




2.2 LAB: Warm up: Basic output with variables
This zyLab activity prepares a student for a full programming assignment. Warm
2.2 LAB: Warm up: Basic output with variables This zyLab activity prepares a student for a full programming assignment. Warm up exercises are typically simpler and worth fewe than a full programming assignment, and are well-suited for an in-person scheduled lab meeting or as self-practice. A variable like user_num can store a value like an integer. Extend the given program as indicated. 1. Output the user's input. (2 pts) 2. Output the input squared and cubed. Hint: Compute squared as user_num " user_num. (2 pts) 3. Get a second user input into user num 2, and output the sum and product. (1 pt) Note: This zyLab outputs a newline after each user-input prompt. For convenience in the examples below, the user's input value is shor the next ine, but such values don't actually appear as output when the program runs. Enter integer: 4 You entored: 4 4 squared 1516 And 4 cubed is 6411 Enter another integer: 5 \( 4+5 \) is 9 \( 4 \cdot 5 \) ia 20


We have an Answer from Expert

View Expert Answer

Expert Answer


Ans: > Code: user_num = int(input('Enter integer:\n')) print("You entered:",user_num) print(user_num

We have an Answer from Expert

Buy This Answer $5

Place Order

We Provide Services Across The Globe