#include <iostream>
using namespace std;
int main() {
int x;
int s;
s = 0;
cout << "Введите число: ";
cin >> x;
if(x == 7){
cout << "Good bye!";
return 0;
}
for (int i = 1; i <= x; i++) {
s = s + i;
};
cout << "Сумма: " << s <<"\n";
cout << "Максимум: " << x <<"\n";
cout << "Минимум: " << 1 <<"\n";
Объяснение:
#include <iostream>
using namespace std;
int main() {
int x;
int s;
s = 0;
cout << "Введите число: ";
cin >> x;
if(x == 7){
cout << "Good bye!";
return 0;
}
for (int i = 1; i <= x; i++) {
s = s + i;
};
cout << "Сумма: " << s <<"\n";
cout << "Максимум: " << x <<"\n";
cout << "Минимум: " << 1 <<"\n";
return 0;
}
Объяснение: