Skip to content

Commit

Permalink
tutto ok - primo
Browse files Browse the repository at this point in the history
  • Loading branch information
matteo-andreuzza committed Sep 24, 2021
1 parent 72499d2 commit dac8029
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// Usare IntelliSense per informazioni sui possibili attributi.
// Al passaggio del mouse vengono visualizzate le descrizioni degli attributi esistenti.
// Per altre informazioni, visitare: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: File corrente",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
}
]
}
29 changes: 29 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#import
import time

print("benvenuto nel calcolatore autmatico dell'MCD")
print("versione 0.0.1")
time.sleep(1)
print("per prima cosa inseriamo i numeri di cui vuoi calcolare l'MCD")
#definizione varibili
a1 = int(input('inserisci il primo numero '))
b1 = int(input('inserisci il secondo numero '))
a = a1
b = b1
print('grazie! ora eseguo i calcoli')
time.sleep(1)


#algoritmo

while a != b:
if a > b :
a = a-b
if b > a :
b = b-a

print("ho finito!")
print("L'MCD tra " + str(a1) + " e " + str(b1) + " è: " + str(a))



0 comments on commit dac8029

Please sign in to comment.