<span>OpenOffice.org Writer, MS Word, WordPad - все это текстовые редакторы.
Microsoft Paint </span>- это графический редактор
Ответ: d) <span>Microsoft Paint </span>
<span>Программа, относящаяся к прикладному программному обеспечению:
</span><span>1) AutoCAD</span>
1. 20*40=800
2.800*64=51200 символов
Была у нас такая задача в 6-м классе)
#include <iostream>
using namespace std;
int main() {
setlocale(LC_ALL, "Russian");
int dm;
double cm;
for (dm=10;dm<=22;dm++){
cm=dm*25.4/10;
cout<<dm<<" дюймов = "<<cm<<" сантиметров"<<endl;
};
return 0;
}
Var
start,finish, x, a, b, c,dx:real;
begin
Write('x, a,b,c =');
Readln(x, a, b, c);
Writeln('Xнач, Xконе, dX =');
Readln(start, finish, dx);
if (x<3)and(b<>0) then
begin
while (start < finish)do
begin
x:= start;
Writeln('F = ', a*x*x - b*x + c);
start:= start +dx;
end;
end
else if (x>3)and(b<>0) then
begin
while (start < finish)do
begin
x:= start;
if x-c = 0 then writeln('No solution') else
Writeln('F = ', (x-a)/(x-c));
start:= start + dx;
end;
end
else
begin
while (start < finish)do
begin
x:= start;
if c = 0 then writeln('No solution') else
Writeln('F = ', x/c);
start:= start +dx;
end;
end
end.