Answered step by step
Verified Expert Solution
Question
1 Approved Answer
1. Define a void function that prints each character of a string given as parameter, followed by a blank. Use a for loop with a
1. Define a void function that prints each character of a string given as parameter, followed by a blank. Use a for loop with a range or a while loop in your solution. Challenge: Print the characters of the string followed by a blank backwards.(No recursion!) Test your function. 2. Define of a void function printAddress. The function will accept one(!) string as parameter. This string has the format of an address: street address, city, province and postal code (items separated by commas, but one string). For any address entered as argument, the function will print out the street address, the postal code with the city, and the province on a separate line. How to solve the problem: Use the string method find (...) to find the indices of the commas and then apply string slicing. The street address is the substring before the first comma. the city is the substring between the first comma and the second comma. the province and the postal code is the substring after the second comma. O O Call and test your function with your own address as argument
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started