Перевести на с#
uses crt;
var
s: string;
i,j: integer;
begin
writeln('vvedite stroku: ');
readln(s);
i: =pos('(',s); j: =pos(')',s);
if (i> 0) and (j> 0) and (j> i) then
s: =copy(s,1,i-1)+copy(s,j+1,length(s)-j);
writeln('resultat: ',s);
readkey
end.

yan551029 yan551029    2   18.11.2019 14:17    2

Другие вопросы по теме Информатика