实验7.3 字符串 7-7 输出大写英文字母

本题要求编写程序,顺序输出给定字符串中所出现过的大写英文字母,每个字母只输出一遍;若无大写英文字母则输出“Not Found”。

输入格式:
输入为一个以回车结束的字符串(少于80个字符)。

输出格式:
按照输入的顺序在一行中输出所出现过的大写英文字母,每个字母只输出一遍。若无大写英文字母则输出“Not Found”。

输入样例1:
FONTNAME and FILENAME
输出样例1:
FONTAMEIL
输入样例2:
fontname and filrname
输出样例2:
Not Found

#include
#include
int main()
{
	char n[81];
	int b[200]={0};
	int len=0,f=0;
	while(1){
		scanf("%c",&n[len]);
		if(n[len]=='\n')break;
		len++;
	}
	
	for(int i=0;i<len;i++){
		int j=n[i];
		if((n[i]>='A'&&n[i]<='Z')&&b[j]==0){
			printf("%c",n[i]);
			f=1;
			b[j]=1;
		}
	}
	if(f==0)printf("Not Found");
}

你可能感兴趣的:(c,c语言)