14 Nisan 2013 Pazar

96 - String Metodlar... Yıldızlardan v Yapmak... Format Metodu


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

namespace ConsoleApplication5
{
    class Program
    {
        static void Main(string[] args)
        {// Format metodu kullanılarak * dan v işareti yapmak...

            for (int i = 10; i > 0; i--) // Aradaki boşluğu ayarlıyoruz... 
                Console.WriteLine(String.Format("*{0,"+i+"}", "*"));
            
            Console.Write("*"); // Son yıldız tek olacaktır... 
            Console.ReadKey();
        }

    }
}