Всё, что смог var a,b,c: integer; begin write('введите три целых числа через пробел: '); read(a, b, c); if a=b then writeln('yes') else writeln('no'); if b=c then writeln('yes') else writeln('no'); if a=c then writeln('yes') else writeln ('no'); end.
egorstebenev6
03.05.2023
Using system; using system.collections.generic; using system.linq; using system.text; namespace consoleapplication4 { class program { static void main(string[] args) { bool result = false; console.writeline("введи строку"); string str = console.readline(); for (int i = 0; i < str.length - 1; i++) { if (str.substring(i, 1) == str.substring(i + 1, 1)) { result = true; break; } } if (result == true) console.writeline("да, встречаются"); else console.writeline("нет, не встречаются"); console.readkey(); } } }