1.program n1;
2.Var x: Real;
3.begin
4.Writeln:('Введите дробное число');
5.ReadLn(x);
6.Writeln (x div 1);
7.Writeln (x mod 1);
8.end.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
1.program n1;
2.Var x: Real;
3.begin
4.Writeln:('Введите дробное число');
5.ReadLn(x);
6.Writeln (x div 1);
7.Writeln (x mod 1);
8.end.