Algorithm Training Case Conversion

Source: Internet
Author: User

Algorithm training case Conversion time limit: 1.0s memory limit: 512.0MB    Problem description Write a program, enter a string (not more than 20), and then the string of each character in the case of the transformation, will be uppercase letters into lowercase, lowercase letters into uppercase, and then the new string output.
Input format: Enter a string, and the string contains only English letters, no other types of characters, and no spaces.
Output format: Outputs the converted string.
Input and Output sample sample input Aedb sample output Aedb
#include <iostream>#include<cstdio>#include<cstring>using namespacestd;Chars[ -];intMain () {intI,len;  while(~SCANF ("%s", s)) {Len=strlen (s);  for(i=0; i<len;i++)        {            if(s[i]>='a'&&s[i]<='Z') S[i]=s[i]- +; ElseS[i]=s[i]+ +; } printf ("%s\n", s); }    return 0;}

Algorithm Training Case Conversion

Related Article

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.