2个回答
2013-05-26
展开全部
我有一个简单的办法(goto法)。 在你的想要重新运行的代码前加上标签。如:start://你的程序代码Console.WriteLine("是否再次运行程序?是就按\"1\",否就按\"2\"关闭程序");byte i=Convert.ToByte(Console.ReadLine());if(i==1) //使用if语句判断条件,满足就用goto语句去开头! { //用switch语句也能有同样效果 goto start; }else { Environment.Exit(0); //退出控制台 }
推荐于2018-05-11
展开全部
using System;
using System.Collections.Generic;
using System.Text;namespace 循环使用
{
class Program
{
private static bool pand = true;
static void Main(string[] args)
{
xunhuan(pand);
}
public static void xunhuan(bool bl)
{
if (bl == true)
{
for (int i = 0; i < 100; i++)
{
Console.WriteLine(i);
}
}
pd();
}
public static void pd()
{
Console.WriteLine("是否继续执行循环?Y/N");
string s = Console.ReadLine();
if (s == "Y")
{
pand = true;
}
else
{
pand = false;
}
xunhuan(pand);
}
}
} 大概是这样 先试试~~
using System.Collections.Generic;
using System.Text;namespace 循环使用
{
class Program
{
private static bool pand = true;
static void Main(string[] args)
{
xunhuan(pand);
}
public static void xunhuan(bool bl)
{
if (bl == true)
{
for (int i = 0; i < 100; i++)
{
Console.WriteLine(i);
}
}
pd();
}
public static void pd()
{
Console.WriteLine("是否继续执行循环?Y/N");
string s = Console.ReadLine();
if (s == "Y")
{
pand = true;
}
else
{
pand = false;
}
xunhuan(pand);
}
}
} 大概是这样 先试试~~
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询