Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Please write the code for the below question in Java ( simple and easy ) Note the following code to get input a String from
Please write the code for the below question in Java ( simple and easy )
Note the following code to get input a String from keyboard. (Scanner class is in util package)
Scanner input = new Scanner ( System.in ); String name = input.nextLine ( "Please enter your name." ); |
Q 1) Input a string and display all characters who have even index along with the code who have odd index. For example if input is ABCDEFGH then output is A 66 C 68 D 70 E 72
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started