Jump to content

Recommended Posts

Posted

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;
}

Posted

Asta e tot? :O

Daca tot ai 2 INCLUDE, foloseste si la primul rand ( iostream.h )

Le vrei sortate folosind insertia sau prin numarare?

Tu trebuie a ai 3 parti, A, B, C, in genul: 

#include <iostream.h>

int a[25], b[25], c[25]

count << si aici numarul de elemente>>

Iar A, B, C trebuie duse in aceasi directie.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • 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.