我试图创建一个搜索整数数组的整数值的方法。 [英] Im trying to make a method which searches an integer array for a integer value.

查看:73
本文介绍了我试图创建一个搜索整数数组的整数值的方法。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

因此它可以显示消息Found或Not Found。这些方法必须接受一个整数数组和整数变量来搜索。



我尝试过:



So it can displays the message "Found" or "Not Found". The methods must accepts an integer array and integer variable to be searched.

What I have tried:

string[] strArray = { "January", "February", "March", "April", "May" };
            bool valid = false;
            strArray[0];
            Console.WriteLine("Please type in the string to search for ");
            string str = Console.ReadLine();
            for (int i = 0; i < strArray.Length; i++)
            {
                if (strArray[i] == str)
                {
                    valid = true;//true
                    break;//Terminate the loop
                }

            }//End of the loop
            if (valid == true)
            {
                Console.WriteLine("Found");
            }
            else
            {
                Console.WriteLine("Not found");
            }
            Console.ReadLine();

推荐答案

我们不做你的作业:它是为一个原因。它就是为了让你思考你被告知的事情,并试着理解它。它也在那里,以便您的导师可以识别您身体虚弱的区域,并将更多的注意力集中在补救措施上。



亲自尝试,你可能会发现它不是像你想的那么难!您已经找到了适用于字符串的代码,因此请弄清楚它是如何工作的 - 这并不困难 - 并将其用作新方法的基础。虽然我不得不说代码有点......嗯......学生 - 而且不是很好!



如果您遇到特定问题,请询问相关问题,我们会尽力提供帮助。但我们不打算为你做这一切!
We do not do your homework: it is set for a reason. It is there so that you think about what you have been told, and try to understand it. It is also there so that your tutor can identify areas where you are weak, and focus more attention on remedial action.

Try it yourself, you may find it is not as difficult as you think! You've found code which works for strings, so work out how that works - it's not difficult - and use that as the base for a new method. Though I do have to say that code is a bit ... um ... "studenty" - and not in a good way!

If you meet a specific problem, then please ask about that and we will do our best to help. But we aren't going to do it all for you!


这篇关于我试图创建一个搜索整数数组的整数值的方法。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆