Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
419 views
in Technique[技术] by (71.8m points)

c# - It should work like a lottery, the computer thinks out a random number and you have to guess it, but it always writes that the number is too big

It should work like a lottery, the computer thinks out a random number and you have to guess it, but it always writes that the number is too big.

using System;  
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

Activation

namespace HelloSasha
{
    class Program
    {
        static void Main(string[] args)
        {
            Random rnd = new Random();
            int number = rnd.Next(0, 100);

Randomizer

            Console.WriteLine("Write your number");
            string sUserNumber = Console.ReadLine();
            int iUserNumber = Convert.ToInt32(sUserNumber);

User number

            bool x = true;
            while (x == true)
            {
                if (iUserNumber > number)
                {
                Console.WriteLine("So big");
                Console.ReadLine();
                }
                if (iUserNumber < number)
                {
                Console.WriteLine("So small");
                Console.ReadLine();
                    }
                else if (iUserNumber == number)
                {
                Console.WriteLine("You win");
                Console.ReadLine();
                x = false;

All IF


                }
            }

        }
    }
}
question from:https://stackoverflow.com/questions/65850829/it-should-work-like-a-lottery-the-computer-thinks-out-a-random-number-and-you-h

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Console.WriteLine("Write your number");
string sUserNumber = Console.ReadLine();
int iUserNumber = Convert.ToInt32(sUserNumber);

You're only calling these lines once. So your program is stuck on the same number every time. At the end of your loop, you need to get a new number from the user.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...