ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1563. Bayan

В чём ошибка? Помогите знатоки программирования , пожалуйста))
Posted by Nikita 27 Nov 2019 01:33
Помогите ,пожалуйста , что не так?
#include <iostream>
#include <string>
using namespace std;
int main() {
    int n, s = 0;
    cin >> n;
    string a[1000];
    for (int i = 0; i < n; i++) {
        getline(cin, a[0]);
        for (int j = n + 1; j < n; j++) {
            if (a[i] == a[j]) {
                break;
                s++;
            }
        }
    }
    cout << s;
    return 0;
}


Edited by author 02.12.2019 20:46
Re: В чём ошибка? Помогите знатоки программирования , пожалуйста))
Posted by Kirill Bely 18 Dec 2019 17:13
у тебя код неверный

Edited by author 18.12.2019 17:14