我正在为学校编写一个简单的 Mad Libs 程序。我发布的代码遍历一个数组以搜索某些提示。一旦找到,它就会使用提示提出问题并记录答案。然而,包含我的答案的数组省略了每个单词的第一个字母,除了第一个变量。这是我的代码和数组输出的副本。我知道这很糟糕,但我正在学习。
char buffer[256];
int y = 0;
//iterates through array looking for answers
for(int i = 0;i <= 256;i++)
{
if(storyArray[i][0] == '<' && isalpha(storyArray[i][1]))
{
for(int x = 0; storyArray[i][x]; x++)
{
switch(storyArray[i][x]){
case '<':
cout << "\t";
x++;
putchar(toupper(storyArray[i][x]));
break;
case '>':
cout << ": ";
cin.ignore();
cin.getline(buffer,256);
strcpy(answerArray[y],buffer);
y++;
break;
case '_':
cout << " ";
break;
default:
cout << storyArray[i][x];
break;
}
}
}
}
输出:Arrayitem1 rayitem2