How to calculate percentage from fraction in Pascal

1 Answer

0 votes
program CalculatePercentage;

var
  numerator, denominator, fraction, percentage: Double;

begin
  numerator := 3.0;
  denominator := 4.0;

  // Calculate the fraction
  fraction := numerator / denominator;

  // Convert fraction to percentage
  percentage := fraction * 100;

  WriteLn('Percentage: ', percentage:0:2, '%');
end.



(*
run:

Percentage: 75.00%

*)

 



answered Jan 15, 2025 by avibootz
...