微笑


私信TA

用户名:84491135

访问量:10006

签 名:

一只萌新

等  级
排  名 1425
经  验 2887
参赛次数 2
文章发表 9
年  龄 0
在职情况 学生
学  校 华南师范大学
专  业 软件工程

  自我简介:

一只萌新

参考代码:(没优化)

#include <stdio.h>
#include <string.h>

int main()
{
	int t1='V'-'A', t2='F'-'A', p;
	char s[205];
	char end[] = "ENDOFINPUT";
	while(1)
	{
		gets(s);
		if(strcmp(s,end)==0)
			return 0;
		else if(strcmp(s,"START")==0 || strcmp(s,"END")==0)
			continue;
		int len = strlen(s);
		for(int i=0; i<len; i++)
		{
			if(s[i]<'A' || s[i]>'Z')
				printf("%c",s[i]);
			else
			{
				p = s[i] + t1;
				if(p>'Z')
					p = s[i] - t2;
				printf("%c", p);
			}
		}
		printf("\n");
	}

	return 0;
}


 

0.0分

1 人评分

  评论区

  • «
  • »