Kaydol:
Kayıt Yorumları
(
Atom
)
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Yildiz_Ucgen_Cizme { class Ucgen_Cizme { static void Main(string[] args) { Console.WriteLine("Üçgenin kenar uzunlugunu giriniz :"); int a = Convert.ToInt16(Console.ReadLine()); int n = 0; for (int i = 0; i < a; i++) { int b = 0; for (int j = a - n; j > 0;j-- ) { if (i < a - 1) { Console.Write(" "); if (j == 1 && b < 2) { Console.Write("*"); j = 2 * n; b++; } } else { Console.Write("*"); j = 3; b++; if (b >= 2 * a - 1) j = 0; } } Console.WriteLine(""); n++; if(a-1==n) Console.Write(" "); } Console.ReadKey(); } } }
using System;
YanıtlaSilusing System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ses
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("uzunluk giriniz : ");// dışardan uzunluk istiyoruz
int sayi = int.Parse(Console.ReadLine());//uzunluğu bir sayıya atıyoruz
int bos = sayi;
int diger= 1;
string bosluk=" ";
string resim = "*";
Console.WriteLine("{0," + bos + "}" + resim, bosluk); // girdiğimiz uzunluk kadar boşluk brakıp yıldız işareti koyuyoruz
for (int i = 1; i < sayi-1; i++) // uzunluk kadar dönsün diyoruz
{
bos -= 1;
Console.WriteLine("{0,"+bos+"}"+resim+"{1,"+diger+"}"+resim,bosluk,bosluk);// bosluk sürekli azalacak, ve diger değişkenide artacak bu şekide kenarlarda yıldız oluşacak
diger += 2;
if (i == sayi - 2)
{
Console.Write("{0,"+(bos-1)+"}",bosluk);
for (int j = 0; j <= diger+1; j++) // tekrar bir döngü kurark yıldızın altını kapatıyoruz..
{
Console.Write("*");
}
}
}
Console.ReadKey();
}
}
}