Posts by user158225 • 1 point
1 post
-
-1
votes2
answers13627
viewsA: Python second degree equation
print('equação do 2° gral') print('x²-x+1=0, a = x², b = x, c = 1') a = int(input('De valor à a')) b = int(input('De valor à b')) c = int(input('De valor à c')) print('A formula…