Hoşgeldin Misafir

Unit Kullanımı

MiRaT

13 Kas 2017
2,077 Mesaj

Aktiflik

Seviye

Deneyim

TIM / GÖREV:
Kod:
unit Unit1;

interface
procedure topla;

var
toplam,x,y:integer;


implementation

procedure topla;
begin
writeln('İki sayi giriniz.');
readln(x,y);
writeln('Sonuç:',toplam);
readln;
end;

end.