1)Сделать массив размером 10! Заполнить его рандомными числами! Вывести наибольшее число
1)Сделать массив размером 10! Заполнить его рандомными числами! Вывести наибольшее число 2)Сделать программку решения квадратного уровнения 3)Сделать игру угодай число! в конце вывести число попыток! И сумму всех чисел!
Задать свой вопрос1 ответ
Алеша Смогалев
1:
include lt;iostreamgt;
include lt;ctimegt;
int main()
srand(time(NULL));
const int arraySize = 10;
int mainArray[arraySize];
for (int i = 0; i lt; arraySize; i++)
mainArray[i] = rand() % 1000;
int maxNum = mainArray[0];
for (int i = 0; i lt; arraySize; i++)
if (mainArray[i] gt; maxNum)
maxNum = array[i];
std::cout lt;lt; maxNum lt;lt; std::endl;
system("pause");
return 0;
-------------------
2:
include lt;iostreamgt;
include lt;cmathgt;
using namespace std;
int main()
float
a_coef,
b_coef,
c_coef;
cout lt;lt; "Input the coefficients (a * x^2 + b * x + c): ";
cin gt;gt; a_coef gt;gt; b_coef gt;gt; 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 lt;lt; res1 lt;lt; "; " lt;lt; res2 lt;lt; endl;
system("pause");
return 0;
-------------------
3:
include lt;iostreamgt;
include lt;ctimegt;
int main()
srand(time(NULL));
int
unknownNumber = rand() % 100 - 50,
attempts = 0,
inputtedNumber;
while (true)
attempts++;
cout lt;lt; "Input the number: ";
cin gt;gt; inputtedNumber;
if (inputtedNumber != unknownNumber)
cout lt;lt; "Incorrect answer! Try again!" lt;lt; endl;
else
break;
cout lt;lt; "Attempts: " lt;lt; attempts;
system("pause");
return 0;
include lt;iostreamgt;
include lt;ctimegt;
int main()
srand(time(NULL));
const int arraySize = 10;
int mainArray[arraySize];
for (int i = 0; i lt; arraySize; i++)
mainArray[i] = rand() % 1000;
int maxNum = mainArray[0];
for (int i = 0; i lt; arraySize; i++)
if (mainArray[i] gt; maxNum)
maxNum = array[i];
std::cout lt;lt; maxNum lt;lt; std::endl;
system("pause");
return 0;
-------------------
2:
include lt;iostreamgt;
include lt;cmathgt;
using namespace std;
int main()
float
a_coef,
b_coef,
c_coef;
cout lt;lt; "Input the coefficients (a * x^2 + b * x + c): ";
cin gt;gt; a_coef gt;gt; b_coef gt;gt; 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 lt;lt; res1 lt;lt; "; " lt;lt; res2 lt;lt; endl;
system("pause");
return 0;
-------------------
3:
include lt;iostreamgt;
include lt;ctimegt;
int main()
srand(time(NULL));
int
unknownNumber = rand() % 100 - 50,
attempts = 0,
inputtedNumber;
while (true)
attempts++;
cout lt;lt; "Input the number: ";
cin gt;gt; inputtedNumber;
if (inputtedNumber != unknownNumber)
cout lt;lt; "Incorrect answer! Try again!" lt;lt; endl;
else
break;
cout lt;lt; "Attempts: " lt;lt; attempts;
system("pause");
return 0;
, оставишь ответ?
Похожие вопросы
-
Вопросы ответы
Новое
NEW
Статьи
Информатика
Статьи
Последние вопросы
Игорь 14 лет назад был на 8 лет моложе, чем его
Математика.
Два тела массами m1 и m2 находящие на расстоянии R друг
Физика.
В сосуде 4целых одна пятая литр воды что бы заполнить сосуд
Математика.
Двум малярам Диме И Олегу поручили выкрасить фасад дома они разделили
Разные вопросы.
найти порядковый номер 41Э если в ядре 20 нейтронов
Разные вопросы.
в ряду натуральных чисел 3, 8, 10, 24, … 18 одно
Математика.
Предприятие по производству с/хоз продукции на производство затратило 3527000 руб Валовый
Разные вопросы.
Математика, задано на каникулы. ВАРИАНТ 1004
НОМЕР 1,2,3,4,5,6,7,8.
Математика.
Имеются три конденсатора емкостью С1=1мкФ, С2=2мкФ и С3=3мкФ. Какую наименьшую емкость
Физика.
Из точки м выходят 3 луча MP MN и MK причём
Геометрия.
Облако тегов