Main.java x 1 class Main { 2 ▼ public static void main(String[] args) { 3 System.out.println("Hello world!"); 4 5 } } Co
Posted: Fri Jul 08, 2022 6:44 am
Main.java x 1 class Main { 2 ▼ public static void main(String[] args) { 3 System.out.println("Hello world!"); 4 5 } } Console Shell Instructions Lab Assignment 10 Write a program to take a sentence as input form the console. Count the number of characters in the sentence and print the total count of characters. Use a for-loop or while-loop to count the characters.