การแสดงรูป * โดยใช้ภาษา C - Printable Version +- irpg Community (https://irpg.in.th) +-- Forum: Community Central (https://irpg.in.th/forum-1.html) +--- Forum: Town Square (https://irpg.in.th/forum-2.html) +--- Thread: การแสดงรูป * โดยใช้ภาษา C (/thread-1522.html) |
การแสดงรูป * โดยใช้ภาษา C - benjama409 - 11-12-2013 *********** ********** ********* ******** ******* ****** ***** **** *** ** * ใช้คำสั่ง for ซ้อนในการวนลูปแต่ผมทำแบบนี้ไม่ได้อะ มันต้องกลับข้างยังไงเหรอครับช่วยบอกที XD RE: การแสดงรูป * โดยใช้ภาษา C - gol-a-khung - 11-12-2013 for(i=1;i<=10;i++){ for(j=10;j>=i;j--){ คำสั่งโชว์; } คำสั่งขึ้นบรรทัดใหม่; } RE: การแสดงรูป * โดยใช้ภาษา C - dreamknight - 11-12-2013 ตามนี้เลยขอรับ = v = #include <stdio.h> #include <string.h> main() { int i; for(i=1; i<=11; i++){ int j; for(j=11; j>=i; j--) { printf ("*"); } printf ("\n"); } } RE: การแสดงรูป * โดยใช้ภาษา C - TheMoo2000 - 11-12-2013 [shcode=cpp] #include <stdio.h> int main(){ int i,j; for(i=11;i>=0;i--){ for(j=i;j>0;j--){ printf("*"); } printf("\n"); } return 0; } [/shcode] |