/*
Copyright(c)2016,烟台大学计算机学院
All rights reserved.
文件名称:tset.cpp
作者:尤文敏
完成日期:2016年12月10日
版本号:v1.0
题目描述 :
包含B的字符串
问题及代码:
#include <stdio.h>
#include <stdlib.h>
int main()
{
char s[80];
int i,n,j,t;
scanf("%d",&n);
getchar();
for(i=0;i<n;i++)
{
gets(s);
j=0;
t=0;
while(s[j]!='\0')
{
if((s[j]=='B')||(s[j]=='b'))
{
t=1;
break;
}
j++;
}
if(t==1)
puts(s);
}
return 0;
}
运行结果:
知识点总结:
在这个程序中,要注意当出现了一个B或b的字符时,就可以停止判断剩下的字符,因此需要break。
学习心得:
明确好该用什么函数来解决问题。