Uppercase letters (hangdian 2026)

Source: Internet
Author: User

/* Uppercase letters
Input
The input data contains multiple test instances. Each test instance is an English sentence of no more than 100 characters, occupying one line.

 

Output
Output the modified English sentence as required.

 

Sample Input
I like ACM
I want to get an accepted
 

Sample output
I like ACM
I want to get an accepted

*/

# Include <stdio. h>
# Include <ctype. h>
# Include <string. h>
Int main ()
{
Char A [110];
Int Len, I;
While (gets ()! = NULL)
{
Len = strlen ();
A [0] = toupper (A [0]); // The toupper function converts lowercase letters to uppercase letters, and the tolower function converts uppercase letters to lowercase letters.
For (I = 1; I <Len; I ++)
{
If (A [I-1] = ''& A [I]! = '')
A [I] = toupper (A [I]);
}
Puts (a); // gets outputs the characters in the storage unit in sequence starting from this address. When the first '\ 0' symbol is encountered, the output ends and the new line is automatically wrapped.
}
Return 0;
}



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.