S = πR²
Код на Python:
import math
R = int(input())
S = math.pi * R ** 2
print(S)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
S = πR²
Код на Python:
import math
R = int(input())
S = math.pi * R ** 2
print(S)