#include <stdio.h>
int x=1;
int y=0;
int main() {
while(x<=10)
{
y=1;
while(y<=x)
{
printf("*");
y=y+1;
}
printf("\n");
x=x+1;
}
return 0;
}
ผลลัพธ์
*
**
***
****
*****
******
*******
********
*********
**********
คือผมต้องแก้ตรงไหนหรอครับ มันถึงจะเป็นแบบ
**********
*********
********
*******
******
*****
****
***
**
*
Code ภาษา C
int x=1;
int y=0;
int main() {
while(x<=10)
{
y=1;
while(y<=x)
{
printf("*");
y=y+1;
}
printf("\n");
x=x+1;
}
return 0;
}
ผลลัพธ์
*
**
***
****
*****
******
*******
********
*********
**********
คือผมต้องแก้ตรงไหนหรอครับ มันถึงจะเป็นแบบ
**********
*********
********
*******
******
*****
****
***
**
*