我想用数组列表编写一个c#程序

时间:2014-11-16 10:32:43

标签: c#-4.0

我是c#编程的新手,我想在c#中编写一个程序,结果如下所示,所以任何人都可以帮我写这个。

我正试图这样写作。但我们如何用*从某个位置替换角色。

 for(int i=1; i<51; i++ )
   {
   Console.WriteLine(i);  
   }

     1
     *
     3
     4
     *
     6
     7
     8
     9
     *
     11
     12
     13
     14
     15
     16
     *
     and so on 
     50

1 个答案:

答案 0 :(得分:0)

在FOR循环中使用if语句。

  

ArrayList ItemList = new ArrayList();

For(int i=0;i<50;i++)
{      
Itemlist=Console.ReadLine(); //Give your input to populate values in arraylist
}

Foreach(var o in ItemList) { Console.WriteLine(o); }