Answer to Question #175884 in HTML/JavaScript Web Application for mahidhar

Question #175884

Submarine

Given two numbers


The sequence of operations is,

  1. Submerge the Submarine
  2. Fire torpedos
  3. Surface the Submarine

Input

  • The first line of input contains a number totalTorpedos
  • The second line of input contains a number torpedosFired

Output

  • The first line of output is a string with Submarine Submerged text
  • The second line of output is a string with the number of torpedos fired and left, as shown in sample outputs
  • The third line of output is a string with Submarine Surfaced text

Sample Input 1

5

2

Sample Output 1

Submarine Submerged

2 Torpedos Fired, 3 Left

Submarine Surfaced

Sample Input 2

10

2

Sample Output 2

Submarine Submerged

2 Torpedos Fired, 8 Left

Submarine Surfaced




1
Expert's answer
2021-03-26T17:48:46-0400
function submarine(totalTorpedos, torpedosFired) {
    console.log('Submarine Submerged');
    console.log(`${torpedosFired} Torpedos Fired, ${totalTorpedos - torpedosFired} Left`);
    console.log('Submarine Surfaced');
}

submarine(10, 2);

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS