1 Mayıs 2016 Pazar

Klavyeden Girilen 2 Sayı Üzerinde İşlem Yapma

a: 1. sayıyı tutmak için oluşturulan değişken adı
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
  1. TextWindow.Show()
  2. a = 0  
  3. b = 0
  4. toplam = 0
  5. TextWindow.WriteLine("Bir sayı giriniz:  ")
  6. a = TextWindow.ReadNumber()
  7. TextWindow.WriteLine("Bir sayı giriniz:  ")
  8. b = TextWindow.ReadNumber()
  9. toplam = a + b
  10. TextWindow.WriteLine("TOPLAM =  " + toplam)




ÇIKARMA

  1. TextWindow.Show()
  2. a = 0  
  3. b = 0
  4. fark = 0
  5. TextWindow.WriteLine("Bir sayı giriniz:  ")
  6. a = TextWindow.ReadNumber()
  7. TextWindow.WriteLine("Bir sayı giriniz:  ")
  8. b = TextWindow.ReadNumber()
  9. fark = a - b
  10. TextWindow.WriteLine("FARK =  " + fark)


ÇARPMA

  1. TextWindow.Show()
  2. a = 0  
  3. b = 0
  4. carpim = 0
  5. TextWindow.WriteLine("Bir sayı giriniz:  ")
  6. a = TextWindow.ReadNumber()
  7. TextWindow.WriteLine("Bir sayı giriniz:  ")
  8. b = TextWindow.ReadNumber()
  9. carpim = a * b
  10. TextWindow.WriteLine("FARK =  " + carpim)



BÖLME

  1. TextWindow.Show()
  2. a = 0  
  3. b = 0
  4. bolum = 0
  5. TextWindow.WriteLine("Bir sayı giriniz:  ")
  6. a = TextWindow.ReadNumber()
  7. TextWindow.WriteLine("Bir sayı giriniz:  ")
  8. b = TextWindow.ReadNumber()
  9. bolum = a / b
  10. TextWindow.WriteLine("Bölüm =  " + bolum)




Hiç yorum yok:

Yorum Gönder