d=0 y=0 oku: If d>99 Then TextWindow.ForegroundColor="yellow" TextWindow.WriteLine("Toplamayı öğrenmişsiniz tebriklerrr!!!") TextWindow.ForegroundColor="gray" Program.End() EndIf a=Math.GetRandomNumber(10) b=Math.GetRandomNumber(10) TextWindow.Write(a) TextWindow.Write("+") TextWindow.Write(b) TextWindow.Write("=") e: c=TextWindow.ReadNumber() If c=a+b Then d=d+1 TextWindow.ForegroundColor="green" TextWindow.Write("doğru cevap=") TextWindow.WriteLine(d) TextWindow.ForegroundColor="gray" Goto oku Else y=y+1 TextWindow.ForegroundColor="red" TextWindow.Write("Yanlış sayısı=") TextWindow.WriteLine(y) TextWindow.WriteLine("tekrar deneyin") TextWindow.ForegroundColor="gray" Goto e EndIf