嗨,我试图让我的代码正常工作,但不幸的是,我在将我的数组组合成一个列表时遇到了一些麻烦。
我希望列出的内容显示如下:
1.a、1.b、1.c、1.d、1.e、2.a、2.b、2.c、2.d、2.e
每个调用数组 1 中的数字(即 1、2、3、4、5、6、...)和数组 2 中的问题(即 a、b、c、d、e)
但是当它被调用时,我也想记录每个数字和问题的回答,例如。
1.a 响应 1、1.b 响应 2、1.c 响应 1... 等等。
到目前为止,我有这段代码,但它只是向我展示了:
const int phone_number = 50;
string[] phone_number1;
phone_number1 = new string[phone_number];
const int question = 5;
string[] question1;
question1 = new string[question];
const int answers = phone_number + question;
string[] answer1;
answer1 = new string[answers];
50 5 55