多个字符从两边向中间汇聚。

2023-12-13 04:04:54
#include <stdio.h>
#include <string.h>
#include <windows.h>
#include <stdlib.h>
int main ()
{
	char arr1[] = "welcome to hebei";
	char arr2[] = "****************";
	int left = 0;
	int right = strlen(arr1) - 1;
	printf("%s\n", arr2);
	while (left<=right)
	{
		
		arr2[left] = arr1[left];
		arr2[right] = arr1[right];
		left++;
		right--;
		Sleep(1000);//睡眠,使输出的内容变慢。
		system("cls");//删除上一次的输出
		printf("%s", arr2);
		
	}
		   return 0;
}

文章来源:https://blog.csdn.net/2301_80898911/article/details/134810389
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。