Write a program that lets you know if you can have a key or not, based on your role at the school.
First ask for the user’s role at the school. They can be a student, administrator, or a teacher. (And remember that capitalization is important! ‘Student’ is not the same as ‘student’.)
Example 1: Administrator or Teacher
For example, if this was the input:
Are you an administrator, teacher, or student?: teacher
This should be the output:
Administrators and teachers get keys!
Example 2: Student
And if this was the input:
Are you an administrator, teacher, or student?: student
This should be the output:
Students do not get keys!
(Note: You should also be able to handle a situation where the user enters a value other than administrator, teacher or student and tell them they must be one of the three choices!)
Example 3: Other
If they input anything else:
Are you an administrator, teacher, or student?: secretary
This should be the output:
You can only be an administrator, teacher, or student!
Ответ:
Объяснение:
#include <iostream>
#include <string>
#include <unordered_map>
int main() {
std::string line;
std::unordered_map<int, int> group_lengths;
int current_group_length = 0;
std::getline(std::cin, line);
for (char c : line) {
if (std::isdigit(c)) {
// Якщо це цифра, збільшуємо довжину поточної групи
current_group_length++;
} else if (current_group_length > 0) {
// Якщо це не цифра і довжина поточної групи більша ніж 0,
// зберігаємо її у словнику і обнуляємо довжину поточної групи
group_lengths[current_group_length]++;
current_group_length = 0;
}
}
// Якщо є поточна група у рядку, яка не була збережена у словнику
// (наприклад, рядок закінчувався цифрою), то зберігаємо її у словнику
if (current_group_length > 0) {
group_lengths[current_group_length]++;
}
// Шукаємо найкоротшу групу
int min_length = line.length();
for (const auto& [length, count] : group_lengths) {
if (length < min_length) {
min_length = length;
}
}
// Виводимо найкоротшу групу і кількість таких груп
std::cout << «Shortest group length: » << min_length << std::endl;
std::cout << «Number of groups with this length: »
<< group_lengths[min_length] << std::endl;
return 0;
}