Setup

VS Code

Ubuntu 20.04 installation

Windows 10 installation

Configuration

Example program

Tasks

Write the following programs.

  1. Ask for a name and print: Hello name

  2. Ask for an integer and print its absolute value

  3. Ask for an integer n and print out n times a string: Hello World!

  4. Ask for an integer n and print an ASCII half-tree with asterisks

  5. Ask for two numbers - hours and minutes - and print the total number of seconds they contain

  6. Ask for a number of meters and print the number of miles

  7. Ask for hours, minutes and kilometers. Let’s say these describe the time you needed to run the given distance. Print the average speed [km/h]

  8. Ask for a radius of a sphere and print its volume

  9. Ask for a number of book copies and print the total cost of buying and delivering them. The first ten books cost 40 zl each. Then the price is 35 zl per book. If customer orders 40 or more books, there is a 5% discount from the total book price. Delivery boxes contain up to twelve books. The cost of delivery per box is 12 zl. Customer pays for delivery of up to five boxes. The bookstore will pay for delivery of any additional box required to fulfill the delivery.

  10. Ask for three numbers: a, b and c. Check if these three numbers can be interpreted as the lengths of sides of a triangle

  11. Ask for a string and check if it is a palindrome (reads the same from the beginning and from the end)

  12. Ask for two numbers: a and b. Check if a is a power of b