fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. const int MAX_SIZE = 100;
  5.  
  6. void interchangeNumbs(int& firstNum, int& secondNum) {
  7. int aux = firstNum;
  8. firstNum = secondNum;
  9. secondNum = aux;
  10. }
  11.  
  12. void sortSequence(int cars[], int m) {
  13. for (int i = 0; i < m; ++i) {
  14. for (int j = i + 1; j < m; ++j) {
  15. if (cars[i] > cars[j]) {
  16. interchangeNumbs(cars[i], cars[j]);
  17. }
  18. }
  19. }
  20. }
  21.  
  22. void nonEquality(int n, int m) {
  23. if (n - m > 0) {
  24. for (int i = 0; i < n - m; ++i) {
  25. cout << -1 << ' ';
  26. }
  27. } else if (n - m < 0) {
  28. cout << "\nMaine veniti mai dimineata la birou :(";
  29. }
  30. }
  31.  
  32. int main() {
  33. int n, m, cars[MAX_SIZE];
  34. cin >> n >> m;
  35. for (int i = 0; i < m; ++i) {
  36. cin >> cars[i];
  37. }
  38. sortSequence(cars, m);
  39. for (int i = 0; i < n && i <= m - 1; ++i) {
  40. cout << cars[i] << ' ';
  41. }
  42. nonEquality(n, m);
  43.  
  44. return 0;
  45. }
Success #stdin #stdout 0.01s 5284KB
stdin
6 5
5
6
3
2
2
stdout
2 2 3 5 6 -1