fork(3) download
  1. #include <iostream>
  2. using namespace std;
  3. const int n = 10;
  4. int x[n];
  5. int main() {
  6. char c;
  7. int s = 0;
  8. while((c=cin.get())!= EOF){
  9. x[c-'0']++;//перевод символов в цифры
  10. }
  11. for(int i = 0; i < n; i++)
  12. s+=x[i]/2;
  13. cout << s << endl;
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0s 4296KB
stdin
0 3 6 3 0 0 1
stdout
2