#include <iostream>
#include <string>
using namespace std;
int main(){
int i, j, N, mark1, mark2, mark3, count=-1;
string Result[500];
string name, surname, temp;
cin>>N;
for(i=0; i<N; i++){
cin>>name>>surname>>mark1>>mark2>>mark3;
if(mark1>=30 && mark2>=30 && mark3>=30 && mark1+mark2+mark3>=140){
count++;
Result[count]= name + " " + surname;
}
for(i=0; i<=count-1; i++){
for(j=i+1; j<=count; j++)
if(Result[i]>Result[j]){
temp=Result[i];
Result[i]=Result[j];
Result[j]=temp;
for(i=0;i<=count;i++)
cout<<Result[i]<<endl;
return 0;
C++
#include <math.h>
int main() {
setlocale(LC_ALL, "RUS");
double a, b, c;
double d, x1, x2;
cout << "a*x*x+b*x+c=0. Введите a,b,c: ";
cin >> a >> b >> c;
cout << "a=" << a << " b=" << b << " c=" << c << "\n";
if (a == 0.0) {
cout << "Не корневое уравнение!"<<endl;
return 2;
d = b * b - 4 * a * c;
cout << "d=" << d << "\n";
if (d > 0) {
x1 = (-b + sqrt(d)) / (2 * a);
x2 = (-b - sqrt(d)) / (2 * a);
cout << "x1=" << x1 << " x2=" << x2 << endl;
else if (d == 0.0) {
x1 = (-b / (2 * a)); x2 = x1;
cout << "x=" << x1 << endl;
else {
cout << "eкорни уравнения не найдены"<< endl;
Объяснение:
На рисунке блок-схема
#include <iostream>
#include <string>
using namespace std;
int main(){
int i, j, N, mark1, mark2, mark3, count=-1;
string Result[500];
string name, surname, temp;
cin>>N;
for(i=0; i<N; i++){
cin>>name>>surname>>mark1>>mark2>>mark3;
if(mark1>=30 && mark2>=30 && mark3>=30 && mark1+mark2+mark3>=140){
count++;
Result[count]= name + " " + surname;
}
}
for(i=0; i<=count-1; i++){
for(j=i+1; j<=count; j++)
if(Result[i]>Result[j]){
temp=Result[i];
Result[i]=Result[j];
Result[j]=temp;
}
}
for(i=0;i<=count;i++)
cout<<Result[i]<<endl;
return 0;
}
C++
#include <iostream>
#include <math.h>
using namespace std;
int main() {
setlocale(LC_ALL, "RUS");
double a, b, c;
double d, x1, x2;
cout << "a*x*x+b*x+c=0. Введите a,b,c: ";
cin >> a >> b >> c;
cout << "a=" << a << " b=" << b << " c=" << c << "\n";
if (a == 0.0) {
cout << "Не корневое уравнение!"<<endl;
return 2;
}
d = b * b - 4 * a * c;
cout << "d=" << d << "\n";
if (d > 0) {
x1 = (-b + sqrt(d)) / (2 * a);
x2 = (-b - sqrt(d)) / (2 * a);
cout << "x1=" << x1 << " x2=" << x2 << endl;
}
else if (d == 0.0) {
x1 = (-b / (2 * a)); x2 = x1;
cout << "x=" << x1 << endl;
}
else {
cout << "eкорни уравнения не найдены"<< endl;
}
}
Объяснение:
На рисунке блок-схема