1)
#include
using namespace std;
int main()
{
int a, b, c, d, e;//числа которые вводит пользователь
const int size = 5;//сколько чисел вводит пользователь
cout << "Enter first number > ";
cin >> a;
cout << "Enter second number > ";
cin >> b;
cout << "Enter third number > ";
cin >> c;
cout << "Enter fourth number > ";
cin >> d;
cout << "Enter fifth number > ";
cin >> e;
cout
cout
system("pause");
return 0;
}
2)
#include
using namespace std;
int main()
{
int a, b, c;//вводит пользователь
int D;//дискриминант
cout << "Enter a > ";
cin >> a;
cout << "Enter b > ";
cin >> b;
cout << "Enter c > ";
cin >> c;
cout
D = (b*b) - 4 * a*c;
cout
cout
cout
system("pause");
return 0;
}