184k views
4 votes
Given string strinput1 on one line and string strinput 2 on a second line, assign lengthDiff with the length of the shorter string subtracted from the length of the longer string.

Ex: If the input is:
park
orange
then the output is: _______.

User Miguel
by
7.6k points

1 Answer

4 votes

Final answer:

To calculate lengthDiff, find the length of each string and subtract the length of the shorter one from the longer one. For the example 'park' and 'orange', the length difference is 2.

Step-by-step explanation:

The question involves finding the difference in length between two strings. In programming, a string is a sequence of characters, and each string has a property known as length, which represents the number of characters in it. To solve this problem, we first determine the length of each string using a length property or length method, depending on the programming language. Then, we subtract the length of the shorter string from the length of the longer string to get lengthDiff. For the given example, if the input is 'park' and 'orange', we have 'park' with a length of 4 and 'orange' with a length of 6. The length difference (lengthDiff) would then be 6 - 4, which equals 2.

User Gashi
by
7.4k points