Kalkulator

  • November 2019
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Kalkulator as PDF for free.

More details

  • Words: 134
  • Pages: 1
program kalkulator; var a,b:real; wybor:integer; begin writeln ('prosty kalkulator'); writeln ('co chcesz zrobic?'); writeln ('1 - dodawanie'); writeln ('2 - odejmowanie'); writeln ('3 - mnozenie'); writeln ('4 - dzielenie'); writeln ('5 - podniesc do kwadratu'); writeln ('6 - wyciagnac pierwiastek kwadratowy'); readln (wybor); case wybor of 1:begin write ('podaj a '); readln (a); write ('podaj b '); readln (b); write('a+b=', (a+b)); end; 2:begin write ('podaj a '); readln (a); write ('podaj b '); readln (b); write('a-b=', (a-b)); end; 3:begin write ('podaj a '); readln (a); write ('podaj b '); readln (b); write('a*b=', (a*b)); end; 4:begin write ('podaj a '); readln (a); write ('podaj b '); readln (b); write('a/b=', (a/b)); end; 5:begin write ('podaj a '); readln (a); write('a*a=', (a*a)); end; 6:begin write ('podaj a '); readln (a); write('pierwiastek z a', (sqrt(a))); end; end; end.

Related Documents

Kalkulator
June 2020 19
Kalkulator
November 2019 16
Kalkulator
May 2020 13
Kalkulator Zakat
November 2019 14
Kalkulator Mqk
August 2019 14
Kalkulator-kpr.xls
November 2019 17