Есть ответ 👍

Напишите имена известных вам программ открывающие файлы со следующими расширениями: txt, doc, bmp, rtf, arj.

110
466
Посмотреть ответы 2

Ответы на вопрос:

VanilRio
4,7(2 оценок)

Txt - блокнот doc - microsoft word bmp -  adobe photoshoprtf -  microsoft wordarj - winrar

Var a, b: integer; f,w: text; begin   assign(f,'input.txt'); reset(f);   assign(w, 'output.txt'); rewrite(w);   readln(f, a, b);   if (a > b) then writeln(w, '> ');   if (a < b) then writeln(w, '< ');   if (a = b) then writeln(w, '=');   close(f); close(w); end. пример: input.txt: 100 99 output.txt : >

Популярно: Информатика