INTERACTIVE ONLINE COURSE

Python 3

FOR BEGINNERS


"The first Python course that simply amazed me. Very well explained and easy to understand." (Alexandru Cosmin)

"The best Python course in Romania." (Iulian Geană)


ALL REVIEWS
COMUNITY
EXERCISES
Computer Science - Problem Collection in Python


Linear Structure [Back to Index]

Page:
/ 1     
1. Read four integers. Display the geometric mean and arithmetic mean of these numbers.

[solve in editor]

Author: admin | Code: #7 | Easy
2. Read a natural number n from the keyboard. Can you display its reverse?

[solve in editor]

Author: Elena Topala | Code: #98 | Easy
3. Read three real numbers a1, a2, a3 and three natural numbers p1, p2, p3. Calculate the weighted arithmetic mean of the numbers a1, a2, a3, with weights p1, p2, p3.

[solve in editor]

Author: Dumitrana Lavinia Victoria | Code: #101 | Easy
4. A car is moving with uniform acceleration on a straight highway, following the speed law v= v0 + a*t, where v0 is the initial speed, "a" is the acceleration of the motion, and "v" is the speed at time "t". Task: read the values for v0, "a", and "t" from the keyboard and display the speed value "v" at a given time.

[solve in editor]

Author: Prioteasa Marin | Code: #111 | Medium
5. Let x be a natural number with exactly 4 digits. Calculate the product of its digits.
Example:
for x=2147 it will display 56 (2*1*4*7=56).

[solve in editor]

Author: Duta Laura Dora | Code: #121 | Easy
6. Determine and display all numbers formed from 10 digits (only with 1, 2, 3) with the condition that any two neighboring digits have a difference in absolute value of 1.

[solve in editor]

Author: Lupu Costache | Code: #132 | Medium
7. . A Great Dane ran n laps around a tennis court with standard dimensions: 23.77m x 8.23m. What distance did he cover?
Hint. Pay attention to the perimeter. Only the number of laps, noted with n, is read from the keyboard.

[solve in editor]

Author: Florea Apostol | Code: #133 | Easy
Page:
/ 1     
Choose one of the proposed problems ...
 arrow_back   home   perm_identity   list   arrow_upward