Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Hello, hi ! I need some help with these two problems here. Can you help me ? It's in Python. Both of these questions are

Hello, hi! I need some help with these two problems here. Can you help me? It's in Python. Both of these questions are down below! Thanks. :) 4.25 LAB: Countdown until matching digits Write a program that takes in an integer in the range 11-100 as input. The output is a countdown starting from the integer, and stopping when both output digits are identical. Ex- If the input is: 93 the output is: Ex- If the input is: 11 the output is: 11 Ex- If the input is: 9 or any value not between 11 and 100(inclusive), the output is: Input must be 11-100 Use a while loop. Compare the digits; do not write a large if-else for all possible same-digit numbers (11,22,33,...,99), as that approach would be cumbersome for larger ranges.4.27 LAB: Hailstone sequence Given a positive integer n, the following rules will always create a sequence that ends with 1, called the hailstone sequence: - If n is even, divide it by 2- If n is odd, multiply it by 3 and add 1(i.e.3 n+1)- Continue until n is 1 Write a program that reads an integer as input and prints the hailstone sequence starting with the integer entered. Format the output so that ten integers, each separated by a tab character (\ t), are printed per line. The output format can be achieved as follows: print(n, end =\t ') Ex: If the input is: 25 the output is:

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Beginning VB 2008 Databases

Authors: Vidya Vrat Agarwal, James Huddleston

1st Edition

1590599470, 978-1590599471

More Books

Students also viewed these Databases questions

Question

=+5. Do end users have realistic expectations?

Answered: 1 week ago