TextWindow.Write("A toogoo oruulna uu=")
a=textwindow.ReadNumber()
TextWindow.Write("B toogoo oruulna uu=")
b=textwindow.ReadNumber()
TextWindow.Write("C toogoo oruulna uu=")
c=textwindow.ReadNumber()
u=a+b+c
TextWindow.WriteLine("3 toonii niilber="+u)
ӨГӨГДСӨН 3 ТООНЫ
ҮРЖВЭРИЙГ ОЛ
TextWindow.Write("A
toogoo oruulna uu=")
a=textwindow.ReadNumber()
TextWindow.Write("B
toogoo oruulna uu=")
b=textwindow.ReadNumber()
TextWindow.Write("C
toogoo oruulna uu=")
c=textwindow.ReadNumber()
u=a*b*c
TextWindow.WriteLine("3
toonii vrjwer="+u)
ӨГӨГДСӨН 3 ТООНЫ
КВАДРАТУУДЫН НИЙЛБЭРИЙГ ОЛ
TextWindow.Write("A
toogoo oruulna uu=")
a=textwindow.ReadNumber()
TextWindow.Write("B
toogoo oruulna uu=")
b=textwindow.ReadNumber()
TextWindow.Write("C
toogoo oruulna uu=")
c=textwindow.ReadNumber()
u=(a*a)+(b*b)+(c*c)
TextWindow.WriteLine("3 toonii kb-n niilber="+u)
ӨГӨГДСӨН 3 ТООНЫ
НИЙЛБЭРИЙН КУБЫГ ОЛ
TextWindow.Write("A
toogoo oruulna uu=")
a=textwindow.ReadNumber()
TextWindow.Write("B
toogoo oruulna uu=")
b=textwindow.ReadNumber()
TextWindow.Write("C
toogoo oruulna uu=")
c=textwindow.ReadNumber()
u=(a+b+c)*(a+b+c)*(a+b+c)
TextWindow.WriteLine("3
toonii niilberiiin kyb="+u)
ӨГӨГДСӨН 2 ТООНЫ ЯЛГАВРЫН КУБЫГ ОЛ
TextWindow.Write("A
toogoo oruulna uu=")
a=textwindow.ReadNumber()
TextWindow.Write("B
toogoo oruulna uu=")
b=textwindow.ReadNumber()
u=(a-b)*(a-b)*(a-b)
TextWindow.WriteLine("2 toonii ylgawiin kyb="+u)
ӨГӨГДСӨН 2 ТООНЫ ЯЛГАВРЫН КУБЫГ ОЛ
TextWindow.Write("A
toogoo oruulna uu=")
a=textwindow.ReadNumber()
TextWindow.Write("B
toogoo oruulna uu=")
b=textwindow.ReadNumber()
u=(a-b)*(a-b)*(a-b)
TextWindow.WriteLine("2 toonii ylgawiin kyb="+u)
ӨГӨГДСӨН ТООНЫ СҮҮЛИЙН ЦИФРИЙГ ОЛ
TextWindow.Write("Toogoo
oruulna uu=")
a=textwindow.ReadNumber()
b=math.Remainder(a,10)
TextWindow.WriteLine("Suuliin tsifr="+b)
ӨГӨГДСӨН ТООНЫ АРАВТЫН
ОРНЫ ЦИФРИЙГ ОЛ
TextWindow.Write("Toogoo
oruulna uu=")
a=textwindow.ReadNumber()
b=math.floor(a/10)
c=math.Remainder(b,10)
TextWindow.WriteLine("10-tiin ornii tsifr="+c)
ӨГӨГДСӨН 2 ОРОНТОЙ ТООНЫ ЦИФРҮҮДИЙН НИЙЛБЭРИЙГ ОЛ
TextWindow.Write("Toogoo
oruulna uu=")
a=textwindow.ReadNumber()
b=math.floor(a/10)
c=math.Remainder(a,10)
f=b+c
TextWindow.WriteLine("2 orontoi toonii tsifruudiin
niilber="+f)
ӨГӨГДСӨН 3 ОРОНТОЙ
ТООНЫ ЦИФРҮҮДИЙН
НИЙЛБЭРИЙГ ОЛ
a=textwindow.ReadNumber()
z= Math.Floor(a/100)
b= Math.Remainder(a,100)
c=math.Floor(b/10)
d=math.Remainder(a,10)
k=c+d+z
TextWindow.WriteLine("zuutiin="+z)
TextWindow.WriteLine("araftiin="+c)
TextWindow.WriteLine("negjiin="+d)
TextWindow.WriteLine("3 orontoi toonii tsifruudiin niilber="+k)
ӨГӨГДСӨН 3 ОРОНТОЙ
ТООНЫ ЦИФРҮҮДИЙН
НИЙЛБЭРИЙГ ОЛ
a=textwindow.ReadNumber()
x=Math.Floor(a/1000)
r= Math.Remainder(a,1000)
z= Math.Floor(r/100)
b= Math.Remainder(a,100)
c=math.Floor(b/10)
d=math.Remainder(a,10)
k=x+c+d+z
TextWindow.WriteLine("myngatiin="+x)
TextWindow.WriteLine("zuutiin="+z)
TextWindow.WriteLine("araftiin="+c)
TextWindow.WriteLine("negjiin="+d)
TextWindow.WriteLine("4 orontoi toonii tsifruudiin niilber="+k)
ӨГӨГДСӨН 3 ОРОНТОЙ
ТООГ ПОЛИМДРОМ ЭСЭХИЙГ ШАЛГА
a=textwindow.ReadNumber()
z= Math.Floor(a/100)
b= Math.Remainder(a,100)
c=math.Floor(b/10)
d=math.Remainder(a,10)
If(z=d) Then
TextWindow.WriteLine("Polimdrom too mun")
Else
TextWindow.WriteLine("Polimdrom too bish")
EndIf
ӨГӨГДСӨН 2 ТООНЫ АРИФМЕТИК БОЛОН ГЕОМЕТР
ДУНДЖЫГ ОЛ
TextWindow.Write("A
toogoo oruulna uu=")
a=textwindow.ReadNumber()
TextWindow.Write("B
toogoo oruulna uu=")
b=textwindow.ReadNumber()
arif=(a+b)/2
gio=Math.SquareRoot(a*b)
TextWindow.WriteLine("arifmetik
dundaj="+arif)
TextWindow.WriteLine("geometr dundaj="+gio)
ӨГӨГДСӨН СЕКУНДЫГ МИНУТ, СЕКУНД БОЛГО
TextWindow.Write("sekundee
oruulna uu=")
a=textwindow.ReadNumber()
m= Math.Floor(a/60)
s= Math.Remainder(a,60)
TextWindow.WriteLine("minut="+m)
TextWindow.WriteLine("sekund="+s)
ӨГӨГДСӨН СЕКУНДЫГ ЦАГ, МИНУТ, СЕКУНД БОЛГО
a=textwindow.ReadNumber()
z= Math.Floor(a/3600)
b= Math.Remainder(a,3600)
c=math.Floor(b/60)
d=math.Remainder(a,60)
TextWindow.WriteLine("TSAG="+z)
TextWindow.WriteLine("MINUT="+c)
TextWindow.WriteLine("SEC="+d)
ӨГӨГДСӨН МИНУТ,СЕКУНДЫГ СЕКУНД РУУ ШИЛЖҮҮЛ
TextWindow.Write("minutaa
oruulna uu=")
m=textwindow.ReadNumber()
TextWindow.Write("sekundee
oruulna uu=")
s=textwindow.ReadNumber()
sec=m*60+s
TextWindow.WriteLine("sekund="+sec)
ӨГӨГДСӨН ЦАГИЙГ ХОНОГ ЦАГТ ШИЛЖҮҮЛ
TextWindow.Write("tsagaa oruulna uu=")
a=textwindow.ReadNumber()
honog= Math.Floor(a/24)
tsag= Math.Remainder(a,24)
TextWindow.WriteLine("honog="+honog)
TextWindow.WriteLine("tsag="+tsag)
ӨГӨГДСӨН ХОНО, ЦАГИЙГ
ЦАГТ ШИЛЖҮҮЛ
TextWindow.Write("Honogoo oruulna uu=")
ho=textwindow.ReadNumber()
TextWindow.Write("Tsagaa oruulna uu=")
ts=textwindow.ReadNumber()
tsag=ho*24+ts
TextWindow.WriteLine("tsag="+tsag)
ConversionConversion EmoticonEmoticon