//#include<stdio.h>
//#include<string.h>
////#include<iostream>
////using namespace std;
//char s[100];
//int i, len;
//int main()
//{
// gets(s);
// len = strlen(s);
// for (i = 0; i < len; i++)
// {
// if (islower(s[i]))
// s[i] = toupper(s[i]);
// }
// printf("%s", s);
// return 0;
//}
//#include <stdio.h>
//int main()
//{
// char s[100]; int i;
// printf("输入字符串:\n");
// gets(s);
// for (i = 0; s[i]; i++)
// {
// if (s[i] >= 'A' && s[i] <= 'Z')
// { s[i] += 32; }
// else if (s[i] >= 'a' && s[i] <= 'z')
// { s[i] -= 32; }
// if (s[i] >='0' && s[i] <= '9')
// {
// s[i] += 1;
// }
//
// }
// puts(s);
//}
//#include <stdio.h>
//#include<string.h>
//int main()
//{
// char s[100]; int i;
// gets(s);
// for (int i=strlen(s)-1; i>=0; i--)
// {
// printf("%c",s[i]);
// }
//}
//#include<stdio.h>
//#include<string.h>
//int main()
//{
// char s[80];
// gets(s);
// for (int j = 1; j< strlen(s); j += 2)
// {
// printf("%c", s[j]);
// }
// printf("\n");
// for (int i = 0; i < strlen(s); i += 2)
// {
// printf("%c", s[i]);
// }
////}
//#include <stdio.h>
//#include <stdlib.h>
//int main() {
// char cs[1024];
// gets(cs);
// int count[256] = { 0 };
// for (int i = 0;i<1024; i++)
// count[cs[i]]++;
// int max = -1;
// char c = 0;
// for (int i = 0; i < 256; i++) {
// if (count[i] > max) {
// max = count[i];
// c = (char)i;
// }
// }
// printf("出现次数最多的是:%c", c);
// return 0;
//}
//#include<stdio.h>
//#include<stdlib.h>
//#pragma warning(disable:4996)
//int main(void)
//{
// FILE* fp;
// char ch;
// if((fp=fopen("dome.txt","w"))==NULL)
// {
// printf("Failure to open demo.txt!\n");
//
// }
// ch = getchar();
// while (ch != "\n");
// {
// fputc(ch, fp);
// ch = getchar;
// }
// fclose(fp);
// return 0;
//}