Bonjour,
TextWindow.Write("Entrer C pour carré et T pour triangle: ")
choix = TextWindow.Read()
If choix = "C" Then
TextWindow.Write("c = ")
c = TextWindow.ReadNumber()
TextWindow.WriteLine(c * c)
Else
TextWindow.Write("h = ")
h = TextWindow.ReadNumber()
TextWindow.Write("b = ")
b = TextWindow.ReadNumber()
TextWindow.WriteLine(b * h / 2)
EndIf
Je pense que ça devrait fonctionner (je n'avais jamais fait de Smallbasic comme à peu près tout le monde).