Hi, I'm looking for with some pascal code. I have to make a program which allows you to input a name and an amount four times. Then it is supposed to output the name, three percentages of the amount and the maximum of one of the percentage out of the four outputted results. can any one help? This is what I have so far:
program grocery;
uses wincrt;
var
Name:Array[1..4] of String;
Amount:Array[1..4] of longint;
i:Integer;
B_sector,L_sector,V_sector:double;
Begin
For i:=1 to 4 do
Begin;
Writeln('Enter Organisation Name');
Readln(Name[i]);
Writeln('Enter the amount');
Readln(Amount[i]);
B_sector:=(Amount[i])*40/100;
V_sector:=(Amount[i])*25/100 ;
L_sector:=(Amount[i])*35/100 ;
Writeln(Name[i]);
Writeln(B_sector:2:1);
Writeln(V_sector:2:1);
Writeln(L_sector:2:1);
End;
End.