import java.util.Scanner;
public class Program_6 {
public static void main(String[] args) {
int count = 0;
Scanner scan = new Scanner(System.in);
String str = scan.next();
for (int i = 0; i < str.length(); i++) {
if (Character.isUpperCase(str.charAt(i))) {
count++;
}
}
System.out.println("No of Capital Letters:" + count);
}
}
Find all the practical at one place of Gujarat Technological University(GTU) With Solutions.
Friday, September 21, 2018
Write a program to count the number of words that start with capital letters.
Subscribe to:
Post Comments (Atom)
-
-
Aim: Phases in software development project, overview. Software Development Life Cycle (SDLC) is a process used by the software industry...
No comments:
Post a Comment