CHAR.CPP
资源名称:C++100.rar [点击查看]
上传用户:wszmarenbt
上传日期:2013-04-26
资源大小:2552k
文件大小:1k
源码类别:
Windows编程
开发平台:
Visual C++
- #include <string.h>
- #include <stdio.h>
- #include <ctype.h>
- #include <conio.h>
- int main(void)
- {
- int LENGTH,I;
- char CHOICE;
- char *STRING = "This is a string";
- printf("nInput the string:");
- gets(STRING);
- LENGTH = strlen(STRING);
- printf("nWhat do you want to do with the string?");
- printf("n1: Capital Letters(A B C ... ...)");
- printf("n2:Lowercase Letters(a b c ... ...)");
- do
- {
- printf("nEnter you CHOICE:");
- scanf("%c",&CHOICE);
- }
- while((CHOICE!='1')&&(CHOICE!='2'));
- switch (CHOICE){
- case '1':for (I=0; I<LENGTH; I++)
- {
- STRING[I] = toupper(STRING[I]);
- };
- break;
- case '2':for(I=0; I<LENGTH; I++)
- {
- STRING[I] = tolower(STRING[I]);
- };
- break;
- }
- printf("nThe string has been changed into : %s",STRING);
- printf("nnPress Any Key to EXIT... ...");
- getch();
- return 0;
- }