我曾尝试在C#中执行一个简单的控制台应用程序,其中我输入一个值以获得在控制台中打印出的相同数量的星号。例如,如果我输入值5我控制台,我希望它打印5星:*****
1 => *
2 => **
3 => ***
编辑:
enter using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace kvadrat
{
class Program
{
static void Main(string[] args)
{
Console.Write("Hur stor kvadrat vill du ha? ");
int size = Convert.ToInt32(Console.ReadLine());
for (int y = 0; y < size; y++)
{
for (int x = 0; x < size; x++)
{
Console.Write("*");
}
Console.WriteLine("");
}
Console.ReadKey();
}
}
}
答案 0 :(得分:0)
这复制了你拥有的东西。问题还不清楚你还需要什么。
string input = Console.ReadLine();
int intValue;
if (int.TryParse(input, out intValue))
{
Console.WriteLine(new string('*', intValue));
}
答案 1 :(得分:0)
我得到了一个问题的答案。
let Url = props.history.location.pathname.replace(/ /g, '-');