208A

Posted ozxics

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了208A相关的知识,希望对你有一定的参考价值。

#include <stdio.h>
#include <string.h>
#include <stdbool.h>
#define Maxsize 210
int main()

	char sentence[Maxsize];
	char wub[4]=‘W‘, ‘U‘, ‘B‘;
	scanf("%s", sentence);
	int length=strlen(sentence);
	int i;
	int j;
	int ind=0;
	bool first=true;
	bool done=false;
	for(i=0; i<length; )
	
		if(sentence[i]==wub[ind])
		
			++i;
			++ind;
		
		else
		
			if(ind==0)
				++i;
			ind=0;
		
		if(ind==3)
		
			ind=0;
			sentence[i-1]=sentence[i-2]=sentence[i-3]=‘.‘;
		
	
	for(i=0; i<length; ++i)
	
		if(sentence[i]==‘.‘)
			done=true;
		else
		
			if((!first)&&(done))
				printf(" ");
			printf("%c", sentence[i]);
			first=false;
			done=false;
		
	
	printf("\n");
	return 0;

  

以上是关于208A的主要内容,如果未能解决你的问题,请参考以下文章

GPG 错误:http://packages.cloud.google.com/apt EXPKEYSIG 3746C208A7317B0F [关闭]