Answer to Question #298735 in Java | JSP | JSF for Woder

Question #298735

import java.util.*;



class App {



public static void main(String[] args) {

Scanner in = new Scanner(System.in);

System.out.println("Enter a String: ");

String words[] = in.nextLine().toLowerCase().split(" ");

for (int i = 0; i < words.length; i++) {

if (i % 2 == 0) {

System.out.print(words[i].toUpperCase() + " ");

} else {

System.out.print(words[i].toLowerCase() + " ");

}

}



in.close();

}

}

Do this programming without using array and split


1
Expert's answer
2022-02-19T16:57:11-0500
import java.util.Scanner;

class App {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        System.out.println("Enter a String: ");
        String word = in.nextLine().toLowerCase();
        int s = 0;
        int n = 0;
        for (int i = 0; i < word.length(); i++) {
            if (word.charAt(i) == ' ' || i == word.length() - 1) {
                System.out.print((n % 2 == 0 ? word.substring(s, i + 1).toUpperCase() : word.substring(s, i + 1)));
                s = i + 1;
                n++;
            }
        }
        in.close();
    }
}

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