subject

In this exercise you will debug the code which has been provided in the starter file. The code is intended to take two strings, s1 and s2 followed by a whole number, n, as inputs from the user, then print a string made up of the first n letters of s1 and the last n letters of s2. Your job is to fix the errors in the code so it performs as expected (see the sample run for an example). Sample run
Enter first string
sausage
Enter second string
races
Enter number of letters from each word
3
sauces
Note: you are not expected to make your code work when n is bigger than the length of either string.
1 import java. util. Scanner;
2
3 public class 02_14_Activity_one {
4 public static void main(String[] args) {
5
6 Scanner scan = Scanner(System. in);
7
8 //Get first string
9 System. out. println("Enter first string");
10 String s1 = nextLine(); 1
11
12 //Get second string
13 System. out. println("Enter second string");
14 String s2 = Scanner. nextLine();
15
16 //Get number of letters to use from each string
17 System. out. println("Enter number of letters from each word");
18 String n = scan. nextLine();
19
20 //Print start of first string and end of second string
21 System. out. println(s1.substring(1,n-1) + s2.substring(s1.length()-n));
22
23
24 }

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 23.06.2019 01:30
Which tab is used to change the theme of a photo album slide show? a. design b. view c. transitions d. home
Answers: 1
question
Computers and Technology, 23.06.2019 02:30
What is the power dissipated by a resistor with a current of 0.02 a and a resistance of 1,000 ? a. 200 w b. 20 w c. 0.4 w d. 4 w
Answers: 1
question
Computers and Technology, 23.06.2019 09:00
Which company provides a crowdsourcing platform for corporate research and development? a: mtruk b: wiki answers c: mediawiki d: innocentive
Answers: 2
question
Computers and Technology, 23.06.2019 17:00
Companies that implement and apply an information system effectively can create
Answers: 1
You know the right answer?
In this exercise you will debug the code which has been provided in the starter file. The code is in...
Questions
question
Social Studies, 10.10.2019 07:30
question
Mathematics, 10.10.2019 07:30
Questions on the website: 13722361