P_0_1.PAS
上传用户:afrynkmhm
上传日期:2007-01-06
资源大小:1262k
文件大小:0k
源码类别:

编译器/解释器

开发平台:

Others

  1. { program 0.1
  2.   assuming annual inflation rates of 7, 8, and 10 per cent,
  3.   find the factor by which the frank, dollar, pound
  4.   sterlinh, mark, or guilder will have been devalued in
  5.   1, 2, ... n years.}
  6. program inflation(output);
  7. const
  8.   n = 10;
  9. var
  10.   i : integer;
  11.   w1, w2, w3 : real;
  12. begin
  13.   i := 0;
  14.   w1 := 1.0;
  15.   w2 := 1.0;
  16.   w3 := 1.0;
  17.   repeat
  18.     i := i + 1;
  19.     w1 := w1 * 1.07;
  20.     w2 := w2 * 1.08;
  21.     w3 := w3 * 1.10;
  22.     writeln(i, w1, w2, w3);
  23.   until i=n
  24. end.