Kodlar :
public class suleymanakyildizcomtr
{
public static void main(String[] args)
{
for (int row = 1; row<=5; row++)
{ for (int col=1; col<=5; col++) {
if ((row == col) || (row == 1 && col == 5) || (row == 2 && col == 4) || ( row == 4 && col == 2) || (row == 5 && col == 1))
System.out.print("*");
else
System.out.print(" ");
}
System.out.println();
}
}
}
3 Yorumlar
kullanıcıdan girilen kadar yıldız eklersek nasıl yapabiliriz
YanıtlaSilVevwehs
YanıtlaSiltest yenli
YanıtlaSil