Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- setlocale(LC_ALL, "Rus");
- bool b = true;
- cout << "Задайте строку: ";
- char a = getchar();
- int i = int(a);
- do
- {
- a = getchar();
- if (a == '\n')
- break;
- if (a >= 'a' && a <= 'z')
- {
- if (int(a) < i)
- {
- b = false;
- break;
- }
- }
- else
- {
- b = false;
- break;
- }
- i = int(a);
- } while (a != '\n');
- if (b)
- cout << "Условие для строки выполняется";
- else
- cout << "Условие для строки не выполняется";
- return 0;
- }
Add Comment
Please, Sign In to add comment