Jump to content

Vova

Members
  • Posts

    1
  • Joined

  • Last visited

Vova's Achievements

Newbie

Newbie (1/14)

  • First Post
  • Conversation Starter

Recent Badges

0

Reputation

  1. Sa se ordoneze crescator/descrescator un sir de n numere naturale. Cine ma poate ajuta sa gasesc gresela? #include <iostream> #include <conio.h> using namespace std; int main() { int s[100], n, i, j, tmp = 0; cout << "Numarul de componente in vector sunt: "; cin >> n; for (i = 0; i < n; i++) { cout << "s[" << i << "]="; cin >> s; } for (j = 1; j <= n; j++) { for (i = 0; i = n - 1; i++) { if (s > s[i + 1]) { tmp = s; s = s[i + 1]; s[i + 1] = tmp; } } } for (i = 0; i < n; i++) { cout << s << endl; } _getche(); return 0; }
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.