#1:
#include <iostream>
#include <ctime>
int main()
{
srand(time(NULL));
const int arraySize = 10;
int mainArray[arraySize];
for (int i = 0; i < arraySize; i++)
mainArray[i] = rand() % 1000;
int maxNum = mainArray[0];
for (int i = 0; i < arraySize; i++)
if (mainArray[i] > maxNum)
maxNum = array[i];
std::cout << maxNum << std::endl;
system("pause");
return 0;
}
-------------------
#2:
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
float
a_coef,
b_coef,
c_coef;
cout << "Input the coefficients (a * x^2 + b * x + c): ";
cin >> a_coef >> b_coef >> c_coef;
float res1, res2;
res1 = (-b_coef + sqrt(b_coef * b_coef - 4 * a_coef * c_coef)) / (2 * a_coef);
res2 = (-b_coef - sqrt(b_coef * b_coef - 4 * a_coef * c_coef)) / (2 * a_coef);
cout << res1 << "; " << res2 << endl;
system("pause");
return 0;
}
-------------------
#3:
#include <iostream>
#include <ctime>
int main()
{
srand(time(NULL));
int
unknownNumber = rand() % 100 - 50,
attempts = 0,
inputtedNumber;
while (true)
{
attempts++;
cout << "Input the number: ";
cin >> inputtedNumber;
if (inputtedNumber != unknownNumber)
cout << "Incorrect answer! Try again!" << endl;
else
break;
}
cout << "Attempts: " << attempts;
system("pause");
return 0;
}
все во вложении (сначало само задание потом ответ)
1. Современное решение
<em>// PascalABC.NET 3.2, сборка 1356 от 04.12.2016</em>
<em>// Внимание! Если программа не работает, обновите версию!</em>
begin
var a:=ArrRandom(ReadInteger('n='),-50,50); a.Println;
Writeln('Среднее положительных ',a.Where(x->x>0).Average);
Writeln('Минимум ',a.Min)
end.
<u>Пример</u>
n= 15
35 27 -7 -1 20 13 6 50 -9 23 -38 46 30 27 14
Среднее положительных 26.4545454545455
Минимум -38
2. Школьный вариант на древних версиях
program Ex1;
const
nn=100; { ограничение на длину массива }
var
i,n,s,k:integer;
a:array[1..nn] of integer;
begin
Randomize;
Write('n='); Read(n);
k:=0;
for i:=1 to n do begin
a[i]:=Random(101)-50;
Write(a[i],' ');
if a[i]>0 then begin
k:=k+1; s:=s+a[i]
end
end;
Writeln;
Writeln('Среднее положительных ',s/k)
end.
program Ex2;
const
nn=100; { ограничение на длину массива }
var
i,n,min:integer;
a:array[1..nn] of integer;
begin
Randomize;
Write('n='); Read(n);
min:=100; { больше максимально возможного }
for i:=1 to n do begin
a[i]:=Random(101)-50;
Write(a[i],' ');
if a[i]<min then min:=a[i]
end;
Writeln;
Writeln('Минимум ',min)
end.
<u>Выводы о том, чему и как учат в школе, делайте самостоятельно...</u>
1 вариант ответа. F(A,B,C)
ОТДЕЛ Задание+;
ИСПОЛЬЗУЕТ Вывод ИЗ "...\Отделы\Обмен\";
ПЕР
сч: ЦЕЛ;
УКАЗ
ОТ сч := 0 ДО 60 ВЫП
Вывод.ЧЦел("%d^", сч, 0, 0, 0)
КОН
КОН Задание.