Can anyone help me solve this project?
-
Declare and set a variable called myName to your name Declare two more string variables introduction and japaneseIntroduction both with an NSString type Set introduction using stringWithFormat class method "My name is %@", myName Set japanese introduction using stringByAppendingString instance method by appending " to moushimasu" Print introduction and japanese introduction Step 3: Define and call a new function Declare a function called printIntroductions The function should accept an NSString as a parameter called name Cut and paste the introduction and japaneseIntroduction code inside of the new function You should have errors for referencing 'myName'. Change any reference to 'myName' to 'name'. This is an error of scope. You only declared 'myName' in your didFinishLaunching method. Not in your new method. In your new method, you declared an argument called 'name' that your function accepts when the method is called In your didFinishLaunching method after you set myName call printIntroductions: and pass in 'myName' as an argument It should print out the introduction and Japanese introduction Step 4: Recurse through a function Add a new function called countDownTillIntroduction: that accepts an integer called numberOfDays as an argument The function should do the following: Check to see if the numberOfDays is 0 If the number of days is 0, it should print "The time has come" If numberOfDays is not 0 It should print "[numberOfDays] days left until introductions" It should declare and set a variable oneLessDay and set it to numberOfDays - 1 It should then call countDownTillIntroduction and pass in oneLessDay In the didFinishLaunching method before you call printIntroductions call countDownTillIntroduction and pass in 4 Completion: OUTPUT: You should see it print "4 days left until introductions", "3 days left until introductions" (down to 1) and then it should print "The time has come" and "My name is [yourName]", "[yourName] to moushimasu"
-
Declare and set a variable called myName to your name Declare two more string variables introduction and japaneseIntroduction both with an NSString type Set introduction using stringWithFormat class method "My name is %@", myName Set japanese introduction using stringByAppendingString instance method by appending " to moushimasu" Print introduction and japanese introduction Step 3: Define and call a new function Declare a function called printIntroductions The function should accept an NSString as a parameter called name Cut and paste the introduction and japaneseIntroduction code inside of the new function You should have errors for referencing 'myName'. Change any reference to 'myName' to 'name'. This is an error of scope. You only declared 'myName' in your didFinishLaunching method. Not in your new method. In your new method, you declared an argument called 'name' that your function accepts when the method is called In your didFinishLaunching method after you set myName call printIntroductions: and pass in 'myName' as an argument It should print out the introduction and Japanese introduction Step 4: Recurse through a function Add a new function called countDownTillIntroduction: that accepts an integer called numberOfDays as an argument The function should do the following: Check to see if the numberOfDays is 0 If the number of days is 0, it should print "The time has come" If numberOfDays is not 0 It should print "[numberOfDays] days left until introductions" It should declare and set a variable oneLessDay and set it to numberOfDays - 1 It should then call countDownTillIntroduction and pass in oneLessDay In the didFinishLaunching method before you call printIntroductions call countDownTillIntroduction and pass in 4 Completion: OUTPUT: You should see it print "4 days left until introductions", "3 days left until introductions" (down to 1) and then it should print "The time has come" and "My name is [yourName]", "[yourName] to moushimasu"
What is your expectation here? Do you want someone to write that program for you? That will not happen. You should try it yourself and if you then run into a specific problem, come back, ask a specific question and probably someone can help you with that.
-
Declare and set a variable called myName to your name Declare two more string variables introduction and japaneseIntroduction both with an NSString type Set introduction using stringWithFormat class method "My name is %@", myName Set japanese introduction using stringByAppendingString instance method by appending " to moushimasu" Print introduction and japanese introduction Step 3: Define and call a new function Declare a function called printIntroductions The function should accept an NSString as a parameter called name Cut and paste the introduction and japaneseIntroduction code inside of the new function You should have errors for referencing 'myName'. Change any reference to 'myName' to 'name'. This is an error of scope. You only declared 'myName' in your didFinishLaunching method. Not in your new method. In your new method, you declared an argument called 'name' that your function accepts when the method is called In your didFinishLaunching method after you set myName call printIntroductions: and pass in 'myName' as an argument It should print out the introduction and Japanese introduction Step 4: Recurse through a function Add a new function called countDownTillIntroduction: that accepts an integer called numberOfDays as an argument The function should do the following: Check to see if the numberOfDays is 0 If the number of days is 0, it should print "The time has come" If numberOfDays is not 0 It should print "[numberOfDays] days left until introductions" It should declare and set a variable oneLessDay and set it to numberOfDays - 1 It should then call countDownTillIntroduction and pass in oneLessDay In the didFinishLaunching method before you call printIntroductions call countDownTillIntroduction and pass in 4 Completion: OUTPUT: You should see it print "4 days left until introductions", "3 days left until introductions" (down to 1) and then it should print "The time has come" and "My name is [yourName]", "[yourName] to moushimasu"
Ok so be honest here. This is codeproject.com not homeworkcheat.com. If you are having some problems and need help with a question about then ask but include the work you have completed and where you are stuck. everyone here is and has taken the effort to learn what is they do. you should be expected to the same if you ever expect to be successful. Learning is a part of life.
-
Declare and set a variable called myName to your name Declare two more string variables introduction and japaneseIntroduction both with an NSString type Set introduction using stringWithFormat class method "My name is %@", myName Set japanese introduction using stringByAppendingString instance method by appending " to moushimasu" Print introduction and japanese introduction Step 3: Define and call a new function Declare a function called printIntroductions The function should accept an NSString as a parameter called name Cut and paste the introduction and japaneseIntroduction code inside of the new function You should have errors for referencing 'myName'. Change any reference to 'myName' to 'name'. This is an error of scope. You only declared 'myName' in your didFinishLaunching method. Not in your new method. In your new method, you declared an argument called 'name' that your function accepts when the method is called In your didFinishLaunching method after you set myName call printIntroductions: and pass in 'myName' as an argument It should print out the introduction and Japanese introduction Step 4: Recurse through a function Add a new function called countDownTillIntroduction: that accepts an integer called numberOfDays as an argument The function should do the following: Check to see if the numberOfDays is 0 If the number of days is 0, it should print "The time has come" If numberOfDays is not 0 It should print "[numberOfDays] days left until introductions" It should declare and set a variable oneLessDay and set it to numberOfDays - 1 It should then call countDownTillIntroduction and pass in oneLessDay In the didFinishLaunching method before you call printIntroductions call countDownTillIntroduction and pass in 4 Completion: OUTPUT: You should see it print "4 days left until introductions", "3 days left until introductions" (down to 1) and then it should print "The time has come" and "My name is [yourName]", "[yourName] to moushimasu"
I think almost everybody reading a discussion board on Objective-C would be able to "solve this project". Do you have any other questions?