Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Attribute VB_Name = "Module1"
5 Cls
6 Rem *Introducir clave y separar cocientes y restos*
10 INPUT a
20 For i = 0 To a - 1
30 INPUT x$(i)
32 If i = 0 Then GoTo 40
35 Let r(i) = Val(Right$(x$(i), 1))
36 Let y(i) = Val(Left$(x$(i), Len(x$(i)) - 1))
40 Next i