Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

program Pajakfajar;

uses crt;

var

income,settax:real;

begin

writeln('======================');

write('Masukkan Pajak :');readln(income);

writeln('=====================');

if income<=20000 then

begin

Settax:=0.2*income;

writeln('Yang Anda Harus Bayar :',settax:5:3);

writeln('======================');

readln;

end

else if income<=50000 then

begin

settax:=400+0.2*(income-20000);

writeln('Yang Anda Harus Bayar :',settax:5:3);

writeln('======================');

readln;

end

else if income>=50000 then

settax:=1150+0.35*(income-50000);

writeln('Yang Anda Harus Bayar :',settax:5:3);

writeln('========================');

readln;

end.

You might also like