Facebook
From Fredrik, 3 Years ago, written in Python.
Embed
Download Paste or View Raw
Hits: 94
  1. Radius = input("Radius?3")
  2.  
  3. r = int(Radius)
  4.  
  5. print (f"Omkrets: {2*r*3.14:.2f} ")
  6. print (f"Areal: {3.14*r*r:.2f} ")
  7.      
  8.