Difference between revisions of "CSC111 Exercises on Loops"

From dftwiki3
Jump to: navigation, search
(Loop Exercises)
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
__TOC__
 
==Loop Exercises==
 
==Loop Exercises==
(The solutions are at the bottom of the page...)
+
 
  
 
;Exercise 1
 
;Exercise 1
 
: Write a function that asks the user to enter a number that is greater than 0.  The function will keep on asking the user for a number until the number is correct.  The function will return the number.
 
: Write a function that asks the user to enter a number that is greater than 0.  The function will keep on asking the user for a number until the number is correct.  The function will return the number.
 +
 +
:Example:
 +
<tt>Please enter a number greater than 0: '''-1'''</tt>
 +
<tt>Invalid number.</tt>
 +
<tt>Please enter a number greater than 0: '''-10'''</tt>
 +
<tt>Invalid number.</tt>
 +
<tt>Please enter a number greater than 0: '''0'''</tt>
 +
<tt>Invalid number.</tt>
 +
<tt>Please enter a number greater than 0: '''10'''</tt>
 +
''(the function then returns 10 to the code section where it was called)''
  
 
;Exercise 2
 
;Exercise 2
Line 9: Line 20:
  
 
;Exercise 3
 
;Exercise 3
: Write a function that reads lines from a file until it finds a line that contains a particular string.  The function receives the name of the file, and the string.
+
: Write a function that reads lines from a file until it finds a line that contains the string "<<<END>>>".  The function receives the name of the file and returns the lines read.
  
 
;Exercise 4
 
;Exercise 4
Line 28: Line 39:
 
:Replace the for-loops by while-loops in the following code
 
:Replace the for-loops by while-loops in the following code
  
:<br>
+
::<source lang="python">
          for c1 in 'ab':
+
for c1 in 'ab':
              for c2 in 'abcdefghijklmnopqrstuvwxyz':
+
    for c2 in 'abcdefghijklmnopqrstuvwxyz':
                    print "111c-" + c1 + c2
+
          print "111c-" + c1 + c2
 
+
</source>
 
<br />
 
<br />
 
<br />
 
<br />
Line 40: Line 51:
 
<br />
 
<br />
 
<br />
 
<br />
 +
<onlydft>
 
==Solution Program==
 
==Solution Program==
<font color="white">
+
<source lang="python">
 
  def exo1( ):
 
  def exo1( ):
 
     ans = input( "Please enter a number greater than 0: " )
 
     ans = input( "Please enter a number greater than 0: " )
Line 149: Line 161:
  
 
   
 
   
</font>
+
</source>
 
+
</onlydft>
 
<br />
 
<br />
 
<br />
 
<br />

Latest revision as of 13:00, 22 March 2015

Loop Exercises

Exercise 1
Write a function that asks the user to enter a number that is greater than 0. The function will keep on asking the user for a number until the number is correct. The function will return the number.
Example:
Please enter a number greater than 0: -1
Invalid number.
Please enter a number greater than 0: -10
Invalid number.
Please enter a number greater than 0: 0
Invalid number.
Please enter a number greater than 0: 10
(the function then returns 10 to the code section where it was called)
Exercise 2
Write a function that asks the user to respond by 'Y', 'y', 'yes', 'YES' or 'N', 'n', 'no', 'NO'. The function keeps on asking until the user enters the correct information. The function will return True if the user entered Yes, and False otherwise.
Exercise 3
Write a function that reads lines from a file until it finds a line that contains the string "<<<END>>>". The function receives the name of the file and returns the lines read.
Exercise 4
Pi can be computed by adding the following terms (http://en.wikipedia.org/wiki/Pi):

Pi expansion.png

How many terms does it take to get the first 3 digits, 3.14?
Exercise 5
Write a program that reads 2 characters from either the keyboard or a file. The characters are either PP, PR, PS, RP, RR, RS, SP, SR, SS. They correspond to the selections made by 2 players playing the game of rock-paper-scissors.
Make the program accept inputs until one player's score is more than 3 points ahead of the other.
Exercise 6
Replace the for-loops by while-loops in the following code
for c1 in 'ab':
     for c2 in 'abcdefghijklmnopqrstuvwxyz':
          print "111c-" + c1 + c2









...