b: 2. sayısı tutmak için oluşturulan değişken adı
Show() : Metin penceresini gösteren fonksiyon.
WriteLine(" ") : Ekrana yazı yazdıran fonksiyon.
ReadNumber() : Klavyeden girilen sayıyı okuyan fonksiyon.
TOPLAMA
- TextWindow.Show()
- a = 0
- b = 0
- toplam = 0
- TextWindow.WriteLine("Bir sayı giriniz: ")
- a = TextWindow.ReadNumber()
- TextWindow.WriteLine("Bir sayı giriniz: ")
- b = TextWindow.ReadNumber()
- toplam = a + b
- TextWindow.WriteLine("TOPLAM = " + toplam)
ÇIKARMA
- TextWindow.Show()
- a = 0
- b = 0
- fark = 0
- TextWindow.WriteLine("Bir sayı giriniz: ")
- a = TextWindow.ReadNumber()
- TextWindow.WriteLine("Bir sayı giriniz: ")
- b = TextWindow.ReadNumber()
- fark = a - b
- TextWindow.WriteLine("FARK = " + fark)
ÇARPMA
- TextWindow.Show()
- a = 0
- b = 0
- carpim = 0
- TextWindow.WriteLine("Bir sayı giriniz: ")
- a = TextWindow.ReadNumber()
- TextWindow.WriteLine("Bir sayı giriniz: ")
- b = TextWindow.ReadNumber()
- carpim = a * b
- TextWindow.WriteLine("FARK = " + carpim)
BÖLME
- TextWindow.Show()
- a = 0
- b = 0
- bolum = 0
- TextWindow.WriteLine("Bir sayı giriniz: ")
- a = TextWindow.ReadNumber()
- TextWindow.WriteLine("Bir sayı giriniz: ")
- b = TextWindow.ReadNumber()
- bolum = a / b
- TextWindow.WriteLine("Bölüm = " + bolum)
Hiç yorum yok:
Yorum Gönder