-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwhileLoop.py
96 lines (90 loc) · 7.59 KB
/
whileLoop.py
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
86
87
88
89
90
91
92
93
94
95
96
################################################################################################################
#Write a program that loops from 1 to 40 and prints the following:
#If the number is a multiple of 2, print "DO"
#If the number is a multiple of 3, print "RE"
#If the number is a multiple of 5, print "MI"
#If the number is a combination, print the combination (ex: for 6, print "DORE")
#If the number is not a multiple of 2, 3 or 5, print the number
#You may use any of the top-10 languages in the TIOBE Index (http://www.tiobe.com/tiobe-index/). Please keep
#things simple:
#Use console input and output (standard input/output)
#Use built-in data structures - don't use a database, XML files, etc.
################################################################################################################
#create counter variable for loop
cnt = 1
print('Begin Loop')
#start for loop
while cnt <= 40:
#check if number is not factor of 2,3,5
if cnt%2 != 0 and cnt%3 != 0 and cnt%5 != 0:
print(cnt)
#check if number is a factor of 2,3,5
elif cnt%2 == 0 and cnt%3 == 0 and cnt%5 == 0:
print('DOREMI')
#check if number is a factor of 2 and 3
elif cnt%2 == 0 and cnt%3 == 0:
print('DORE')
#check if number is a factor of 3 and 5
elif cnt%3 == 0 and cnt%5 == 0:
print('REMI')
#check if number is a factor of 2 and 5
elif cnt%2 == 0 and cnt%5 == 0:
print('DOMI')
#check if number is a factor of 2 only
elif cnt%2 == 0:
print('DO')
#check if number is a factor of 3 only
elif cnt%3 == 0:
print('RE')
#check if number is a factor of 5 only
elif cnt%5 == 0:
print('MI')
#Loop completed, increment counter variable by 1
cnt+=1
#Loop exited
print('Loop finished')
########################################
#RESULTS
########################################
#Begin Loop
#1
#DO
#RE
#DO
#MI
#DORE
#7
#DO
#RE
#DOMI
#11
#DORE
#13
#DO
#REMI
#DO
#17
#DORE
#19
#DOMI
#RE
#DO
#23
#DORE
#MI
#DO
#RE
#DO
#29
#DOREMI
#31
#DO
#RE
#DO
#MI
#DORE
#37
#DO
#RE
#DOMI
#Loop finished