瀏覽代碼

* Changes after comments translator

michael 25 年之前
父節點
當前提交
e59ff956d9
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      docs/refex/ex54.pp

+ 4 - 4
docs/refex/ex54.pp

@@ -3,8 +3,8 @@ Program Example54;
 { Program to demonstrate the Round function. }
 
 begin
-  Writeln (Round(123.456));  { Prints 124  }
-  Writeln (Round(-123.456)); { Prints -124 }
-  Writeln (Round(12.3456));  { Prints 12   }
-  Writeln (Round(-12.3456)); { Prints -12  }
+  Writeln (Round(1234.56));  { Prints 1235  }
+  Writeln (Round(-1234.56)); { Prints -1235 }
+  Writeln (Round(12.3456));  { Prints 12    }
+  Writeln (Round(-12.3456)); { Prints -12   }
 end.