Скажите пожалуйста где ошибка? Нужно найти периметр треугольника в Pascal ABC.
Program Perimetr_treug;
   var a, b, c, P: real;
   begin
      writeln ('Введите стороны треугольника);
      readln (a, b, c);
      P:=a+b+c;
      writeln ('P= ', P);
   end.
  

Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2024 SCHOLAR.TIPS - All rights reserved.