Huawei OJ Platform--uppercase letters in the statistics string

Source: Internet
Author: User

Title Description:

The number of uppercase letters in the statistics string

Input:

Line string

Output:

The number of uppercase letters in the string (output 0 when empty)

Ideas:

This problem is very simple, directly judge each character in the string can, the only thing to note is that the input string may contain spaces, so read in to use the Nextline () method

1 ImportJava.util.Scanner;2 3  Public classcountcaptial {4 5      Public Static voidMain (string[] args) {6Scanner cin =NewScanner (system.in);7String str =cin.nextline ();8 cin.close ();9         Ten         intCount = 0 ; One         Chartemp; A          for(inti = 0; I < str.length (); i++){ -temp =Str.charat (i); -             if(Temp <= ' Z ') && (temp >= ' A ')){ thecount++ ; -             } -         } -          + System.out.println (count); -  +     } A  at}

Huawei OJ Platform--uppercase letters in the statistics string

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.