Skip to content
Snippets Groups Projects
Commit af4da3c7 authored by Rudi Buss's avatar Rudi Buss
Browse files

-

parent 4f0ec961
No related branches found
No related tags found
No related merge requests found
......@@ -6,13 +6,12 @@ using namespace std;
void sortiere (int);
int main ( void )
int main ()
{
int a [10], i;
cout << "Unsortiertes Array : " << endl;
for ( i =0; i <10; i ++)
{
for ( i =0; i <10; i ++) {
a [i]= rand()%100;
cout << a [i] << " ";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment