fork download
  1. #include <iostream>
  2. #include <math.h>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. int n;
  9. cin >> n; //ввод условий
  10. int K[n];
  11. for (int i=0;i<n;i++)
  12. {
  13. cin >> K[i];
  14. }
  15. int L[n]; //описание массивов и счетчиков
  16. int M[n];
  17. int l=0;
  18. int m=0;
  19. for (int i=0;i<n;i++)
  20. {
  21. if (K[i]%2==0) // проверка четности
  22. {
  23. L[l]=K[i];
  24. l++;
  25. }
  26. else
  27. {
  28. M[m]=K[i];
  29. m++;
  30. }
  31. }
  32. cout << "num of L=" << l << endl;
  33. cout << "L:";
  34. for (int i=0;i<l;i++)
  35. {
  36. cout << L[i] << " ";
  37. }
  38. cout << endl;
  39. cout << "num of M=" << m << endl;
  40. cout << "M:";
  41. for (int i=0;i<m;i++)
  42. {
  43. cout << M[i] << " ";
  44. }
  45. return 0;
  46. }
  47.  
Success #stdin #stdout 0s 3416KB
stdin
6 1 2 3 4 5 6
stdout
num of L=3
L:2 4 6 
num of M=3
M:1 3 5