1) I want to need to write a program using a while loop structure that will display the following output:
I have 1 sheep
I have 2 sheep
I have 3 sheep
I have 4 sheep
I have 5 sheep
I have 6 sheep
2) I also need to write a complete program that displays the multiples of 5 from 0 to 50. I also need to use a for loop structure in the program. The output should be as follows
0 :Multiple of 5
1
2
3
4
5 :Multiple of 5
6
7
......
50 :Multiple of 5