0
Warum andere Zahlen im Ergebnis?!
Im der ersten "simple calculator" sollen 2 plus 8 addiert werden mit dem Ergebnis 10. Sample Input: 2 8 Sample Output: 10 Im Ergebnis steht dann aber: Result Input 6 3 Your Output 10 Expectet output 9 Kann das nicht nachvollziehen?! https://code.sololearn.com/cPnucJ9BgG38/?ref=app
2 Réponses
+ 3
Ihr Code läuft gut. Ich sehe nicht 3 plus 6 gleich 10 ... Bitte zeigen Sie uns, wie das anders wäre.
x = int(input() or 3)
y = int(input() or 6)
sum = x + y
print(sum)
+ 2
Declare n1 und n2 as variable n1 = int(input())
n2 = int(input())
print(n1+n2)