Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

You can get the Nth character, or letter, from a string by writing string[N]. The returned value will be a string containing only one character

You can get the Nth character, or letter, from a string by writing string[N]. The returned value will be a string containing only one character (for example, a). The first character has position 0, which causes the last one to be found at position string.length - 1. In other words, a two-character string has length 2, and its characters have positions 0 and 1. 1. Prompt the user for a string. 2. Write a function called third that will return the 3rd character of the string. 3. If the string is shorter than 3 characters return the string too short. 4. If the character is a space, return the word space. 5. Display the original string and the result of the function to the console. Sample Output User enters Cookie, output: Cookie o User enters It rules!, output: It rules! space User enters IT, output: IT too short

image text in transcribed

You can get the Nth character, or letter, from a string by writing string [N]. The returned value will be a string containing only one character (for example, a). The first character has position 0, which causes the last one to be found at position string. length - 1. In other words, a two-character string has length 2, and its characters have positions 0 and 1. 1. Prompt the user for a string. 2. Write a function called third that will return the 3rd character of the string. 3. If the string is shorter than 3 characters return the string too short. 4. If the character is a space, return the word space. 5. Display the original string and the result of the function to the console. Sample Output User enters Cookie", output: Cookie o User enters "It rules!", output: It rules! space User enters IT, output: IT too short You can get the Nth character, or letter, from a string by writing string [N]. The returned value will be a string containing only one character (for example, a). The first character has position 0, which causes the last one to be found at position string. length - 1. In other words, a two-character string has length 2, and its characters have positions 0 and 1. 1. Prompt the user for a string. 2. Write a function called third that will return the 3rd character of the string. 3. If the string is shorter than 3 characters return the string too short. 4. If the character is a space, return the word space. 5. Display the original string and the result of the function to the console. Sample Output User enters Cookie", output: Cookie o User enters "It rules!", output: It rules! space User enters IT, output: IT too short

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Programming The Perl DBI Database Programming With Perl

Authors: Tim Bunce, Alligator Descartes

1st Edition

1565926994, 978-1565926998

More Books

Students also viewed these Databases questions

Question

What is conservative approach ?

Answered: 1 week ago

Question

What are the basic financial decisions ?

Answered: 1 week ago

Question

9. System creates a large, diverse talent pool.

Answered: 1 week ago