#include <iostream> int main() { std::ios::sync_with_stdio(false); int l_testow; std::cin >> l_testow; int const l_grup = 10; int const testow_w_grupie = l_testow / l_grup; int WYNIK = 0; for (int i = 0; i < l_grup; ++i) { int wynik = 0; for (int g = 0; g < testow_w_grupie; ++g) { char t; std::cin >> t; if (t == 'T') wynik += 1; } if(wynik == testow_w_grupie) { WYNIK += 1; } } std::cout << WYNIK << "\n"; return(0); }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | #include <iostream> int main() { std::ios::sync_with_stdio(false); int l_testow; std::cin >> l_testow; int const l_grup = 10; int const testow_w_grupie = l_testow / l_grup; int WYNIK = 0; for (int i = 0; i < l_grup; ++i) { int wynik = 0; for (int g = 0; g < testow_w_grupie; ++g) { char t; std::cin >> t; if (t == 'T') wynik += 1; } if(wynik == testow_w_grupie) { WYNIK += 1; } } std::cout << WYNIK << "\n"; return(0); } |