Link Exchange
- - - - - - - - - - - - - - ผู้ให้การสนับสนุน- - - - - - - - - - - - - -
จากโจทย์ในเว็บ http://www.sourcecode.in.th/homeworks.php?id=1 ความคิดเห็น #2เป็นการเขียนโปรแกรม เพื่อแสดงผลออกมาให้ตรงกับที่โจทย์กำหนดเงื่อนไข-ใช้ for-loop ในการวนรอบเพื่อให้ทำงาน-แสดงผลการทำงานได้ดังนี้_____1____121___12321__1234321_12345432112345654321
/** * @Auther: Mr.Suppakit Thongdee * @Website: www.sourcecode.in.th */ public class pyramidreq2 { /** * @param args the command line arguments */ public static void main(String[] args) { int i; int j; int k; int l; for(i=1; i<7; i++){ for(l=1; l<=6-i; l++){ System.out.print("_"); } for(j=1; j<=i; j++){ System.out.print(j); } for(k=j-2; k>0; k--){ System.out.print(k); } System.out.println(""); } } }
Home - Article - Tutorial - Sourcecode - Dev Handbook - Search - WebBoard - Links - About Us