Computer Science, asked by shristi8350, 5 months ago

WAP to input a string and display it in the manner shown below:
I/P: APPLE
O/P:A$P$P$L$E$​

Answers

Answered by anindyaadhikari13
1

Question:-

Write a program to input a string and display the string in following manner.

Input:- APPLE

Output:- A$P$P$L$E$

Program:-

import java.util.*;

class StringExample

{

public static void main(String args[])

{

Scanner sc=new Scanner(System.in);

System.out.print("Enter the string: ");

String s=sc.next(),n="";

for(int j=0;j<s.length();j++)

n+=s.charAt(j)+"$";

System.out.println("Resultant String: "+n);

}

}

Answered by SASHANKSAHIL
1

Answer:

I have pinned the answer image you can check it out dear

Hope you may get it

Mark as brainliest

Thank You...

Attachments:
Similar questions