0
Как улучшить код?
2 Answers
0
#include <iostream>
#include <string>
using namespace std;
//завершите функцию
void winners(string customers[], int size, int n) {
for(int x = 0; x<size; x++) {
if ((x+1)%n==0){cout << customers[x]<<endl;}
}
}
int main() {
string customers[] = {"Alice", "Bob", "Rayan", "Emma", "Ann", "Bruce", "Synthia", "Daniel", "Richard", "Sam", "Nick", "Mary", "Paul"};
//получаем номер счастливчика
int n;
cin >> n;
//вызываем функцию
winners(customers, 13, n);
return 0;
}
0
for(int x = n; x<size; x+=n) {
cout << customers[x]<<endl;
}