#include<stdio.h>
#include<string.h>
int main()
{
	char a[100],b[100];
	int i,j=0;
	for(i=1;i<=4;i++)
	{
		fgets(a,100,stdin);
		b[j++]=a[0];
		b[j++]=a[1];            \\一个汉字两个字节

	}
	b[j]='\0';                   \\结束字符串的输入
	printf("%s\n",b);
	return 0;


}

藏头诗

相关文章:

  • 2021-12-11
  • 2021-06-21
  • 2022-12-23
  • 2021-06-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-08
猜你喜欢
  • 2022-02-09
  • 2021-10-11
  • 2021-11-13
  • 2021-06-19
  • 2021-07-20
  • 2021-11-21
  • 2021-10-26
相关资源
相似解决方案