-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoddev.cpp
More file actions
85 lines (52 loc) · 832 Bytes
/
oddev.cpp
File metadata and controls
85 lines (52 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#include<iostream>
#include<stdlib.h>
#include<time.h>
using namespace std;
int ev[100],od[100];
int ce = 0;
int co = 0;
int sort(int a[])
{
int i;
//odd even sorting
for(i=0;i<100;i++)
{
if(a[i]%2==0)
{
ev[ce]=a[i];
ce++;
}
else
{
od[co]=a[i];
co++;
}
}
}
int main()
{
int a[100],i;
srand(time(NULL));
for(i=0;i<100;i++)
{
a[i]=rand()%100; //equate the value of upto 99 numbers
}
//display full array
cout<<"this is array with randome number : "<<endl;
for(i=0;i<100;i++)
cout<<a[i]<<" ";
cout<<endl<<endl<<endl;
sort(a);
//display even
cout<<"Even no are : ";
for(i=0;i<ce;i++)
{
cout<<ev[i]<<" ";
}
//display odd
cout<<endl<<endl<<endl<<"Odd numbers are : ";
for(i=0;i<co;i++)
cout<<od[i]<<" ";
cout<<endl;
return 0;
}