Pascal

Moderators: None (Apply to moderate this forum)
Number of threads: 4095
Number of posts: 14004

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
Maximum value in results Posted by Dornio-san on 5 Feb 2012 at 8:31 AM
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.



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.