-
Notifications
You must be signed in to change notification settings - Fork 0
/
lab1-1.cpp
64 lines (51 loc) · 1.06 KB
/
lab1-1.cpp
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
//Jordan Wright
//Lab 1.1
#include <iostream>
using namespace std;
int main(){
int array1[51] = {0};
int array2[51] = {0};
int array3[51] = {0};
int i = 0;
int j = 0;
int numCheck = 0;
//Create arrays
for(i = 0; i <= 50; ++i){
numCheck = i % 3;
if (numCheck == 0){
array1[j] = i;
j++;
}
}
j = 0;
for(i = 0; i <= 50; ++i){
numCheck = i % 3;
if (numCheck != 0){
array2[j] = i;
j++;
}
}
j = 0;
for(i = 0; i <= 50; ++i){
numCheck = i % 3;
if (numCheck != 0){
numCheck = i % 2;
if (numCheck != 0){
array3[j] = i;
j++;
}
}
}
//Print
for(i = 0; i <= 50; ++i){
cout << array1[i] << " ";
}
cout << endl;
for(i = 0; i <= 50; ++i){
cout << array2[i] << " ";
}
cout << endl;
for(i = 0; i <= 50; ++i){
cout << array3[i] << " ";
}
}