Link Exchange
- - - - - - - - - - - - - - ผู้ให้การสนับสนุน- - - - - - - - - - - - - -
จากโจทย์ในเว็บ http://www.sourcecode.in.th/homeworks.php?id=1 ความคิดเห็น #1เป็นการเขียนโปรแกรม เพื่อแสดงผลออกมาให้ตรงกับที่โจทย์กำหนดเงื่อนไข-ใช้ for-loop ในการวนรอบเพื่อให้ทำงาน-แสดงผลการทำงานได้ดังนี้112112321123432112345432112345654321
/** * @Auther: Mr.Suppakit Thongdee * @Website: www.sourcecode.in.th */ public class pyramidreq1 { /** * @param args the command line arguments */ public static void main(String[] args) { int i; int j; int k; for(i=1; i<7; i++){ 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