我正在尝试编写一个程序,该程序接受 C 中的两个字符串输入,然后在两个字符串交错时产生结果。
我想要的一个例子:
input: abdc
input: efgh
result: aebfdgch
这是到目前为止我为该部分编写的一小部分代码。
#include <stdio.h>
#include <string.h>
#define maxLen 100
int main() {
char string1[maxLen];
char string2[maxLen];
printf("please enter a string of up to 100 characters: ");
fgets(shuffleString,maxLen,stdin);
printf("please enter another string of up to 100 characters: ");
fgets(shuffleString2,maxLen,stdin);
return 0;
}
我已经尝试了很多事情来使洗牌工作,但我似乎没有。这是一个家庭作业,所以我不想让别人为我写代码,但是一些例子和解释会很好。另外,如果还不是很明显,这是针对 C 级入门课程的,所以我希望尽可能地接近我的水平。