BatMan wrote: Hello, i'm in need of some help. I have 3 questions in school that i dunno how to do using Turing. I was wondering if i could get some help or just the answers. Well here are the questions.
Write and test a function called palindrome that tests whether or not its parameter is a palindrome, a word spelled the same forward and backward. The function should return true or false. Submit the function and the test program in one file. (5 marks) (APP)
Write and test a subprogram that will take an array of names and remove all duplicates. Read the list of names from a file. The first line of the file contains the number of names in the file. Submit the procedure and the test program in one file. (5 mark) (APP)
Write a recursive function called power that when called as power (x, n) will produce the value xn, where x is a real number and n is an integer. Use the recurrence relation xn = xn – 1 * x and x0 = 1. Test your function by writing a main program that asks the user for the base and the exponent. Make sure you bullet-proof your program. Submit the function and the test program in one file. (5 mark) (TIPS)
Sorry this must be overwhelming, any help is well appriated. Thanks.
I don't know any Turing but could help you structure the code if that will help at all??
EG: In VB which is the most intuitive code I know, the first question could be answered using something like th following.......
'function returns the variable answer
Function pallindrome(answer)
'declare your parameters
Dim lengthofword As Integer
Dim lengthofhalfofword As Integer
Dim testcharacter1 As String
Dim testcharacter2 As String
Dim wordtotest As String
Dim i As Integer 'counter for loop
Dim answer As Boolean
'get user to enter word to be tested
wordtotest = InputBox("enter word to test")
' find out how long word is
lengthofword = Len(wordtotest)
'divide string in half and round to nearest integer
lengthofhalfofword = CInt(lenthofword / 2)
'assume word is a pallindrome
answer = True
'start loop to test each half af the string to see if true
i = 1
For i = 1 To lengthofhalfofword
'set testcharacter1 equal to character in ith position from left of text
testcharacter1 = Mid(wordtotest, i, 1)
'set testcharacter2 equal to character in ith position from right of text
testcharacter2 = Mid(wordtotest, lengthofword - i - 1, 1)
' if they aren't equal then not a pallidrome
If Not testcharacter1 = testcharacter2 Then answer = False
'loop until you've tested each half of the text string
Next i
End Function
Archived topic from Iceteks, old topic ID:2240, old post ID:19080