簡體   English   中英

返回到C#控制台應用程序中的“開始/頂部”

[英]Return to Start/Top in C # console application

我試圖回過頭來從C#控制台程序開始,並且我能夠做到這一點,但是問題是我無法使用Y / N語句來做到這一點。 表示如果我從鍵盤上鍵入Y(是),則程序從它的開始(開始)點開始,如果我鍵入N,則它將終止程序。

我的控制台代碼是:

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

namespace simple_calculation
{
    class Program
    {
        static void Main(string[] args)
        {
            bool bktop = true;
            string option;
            while (bktop)
            {
            Console.WriteLine("Please enter the values");
            int val = int.Parse(Console.ReadLine());
            int val1 = int.Parse(Console.ReadLine());
            int res = val + val1;
            int red = val / val1;

            Console.WriteLine("Please enter the operator");
            string oper=Console.ReadLine();

                if (oper == "+")
                {
                    Console.WriteLine("sum is:" + res);
                }
                else if (oper == "/")
                {
                    Console.WriteLine("division is:" + red);
                }


            else
            {
                Console.WriteLine("do you want to continue? enter Y/N");
                option = Console.ReadLine();
                    if(option=="Y")
                    {
                        bktop = false;
                    }
                else
                    {
                        bktop = true;
                    }
            }
                Console.ReadLine();
        }  
        }
    }
}

我想要的是:我希望當程序達到else條件時,如果用戶輸入Y,則控制台中會出現一個文本“您要繼續嗎?請輸入Y / N”,然后程序又重新啟動,並且用戶輸入N,程序將終止。

任何幫助將不勝感激。

class Program
{
    static void Main(string[] args)
    {
      // Change 1
        bool bktop = true;
        string option;
        while (bktop)
        {
            bktop = true;
            Console.WriteLine("Please enter the values");
            int val = int.Parse(Console.ReadLine());
            int val1 = int.Parse(Console.ReadLine());
            int res = val + val1;
            int red = val / val1;

            Console.WriteLine("Please enter the operator");
            string oper = Console.ReadLine();

            if (oper == "+")
            {
                Console.WriteLine("sum is:" + res);
            }
            else if (oper == "/")
            {
                Console.WriteLine("division is:" + red);
            }


            else
            {

                Console.WriteLine("do you want to continue? enter Y/N");
                option = Console.ReadLine();
                // Change 2
                if (option.ToUpper() != "Y")
                {
                    bktop = false;
                }
            }
        }
    }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM