1. 程式人生 > >C# 用 * 輸出兩個等腰三角形組成的菱形

C# 用 * 輸出兩個等腰三角形組成的菱形

content tel append ext post cti ole pretty ret

int temp = 0;
int n = 5;
for(int i=0;i<n;i++){
for(int j=0;j<n-i;j++){
System.Console.Write(" ");
}

temp = (i+1)*2-1;
for(int j=0;j<temp;j++){
if(j == temp-1){
System.Console.WriteLine("*");
}else{
System.Console.Write("*");
}
}
}

for(int i=0;i<n;i++){
for(int j=0;j<i+2;j++){
System.Console.Write(" ");
}

temp = (n-2-i)*2+1;
for(int j=0;j<temp;j++){
if(j == temp-1){
System.Console.WriteLine("*");
}else{
System.Console.Write("*");
}
}
}
‘).text(i)); }; $numbering.fadeIn(1700); }); });

C# 用 * 輸出兩個等腰三角形組成的菱形