thaiall logomy background
coding : sort bubble.asp
my town
โค้ดดิ้ง : Perl | PHP | ASP | JSP | HTML | HTML5 | JavaScript | Java | COBOL | C++ | MS Access | VB.Net | VB | Python | โค้ดดี
File : bubble.asp ID : 2202
Skin : Default | Sons-of-obsidian | Sunburst | Highlighter | Full
<%
dim numamt, nummax, nummin, ar(100), tmp
numamt = 5 : nummax = 100 : nummin = 50
response.write("Before sorted by bubble sort<br>")
randomize
for i = 1 to numamt
  ar(i) = int(nummin  + (rnd * ( nummax - nummin + 1 )))
  response.write( i & " : " & ar(i) & "<br>")                
next
for i = 2 to numamt
  for j = numamt to i step -1
    if ar(j-1) > ar(j) then
      tmp = ar(j-1)
      ar(j-1) = ar(j)	  
      ar(j) = tmp
    end if
  next
next
response.write("<hr>After sorted by bubble sort<br>")
for i = 1 to numamt  
  response.write( i & " : " & ar(i) & "<br>")                
next
%>
Code details
File namebubble.asp
stat() : modtime2001-07-13 12:57
File size599 bytes
Lines23 บรรทัด
{0 ตัว
}0 ตัว
;0 ตัว
'0 ตัว
"12 ตัว
Space159 ตัว
Tab1 ตัว
cover imageาษาเฮชทีเอ็มแอล (HTML = HyperText Markup Language) คือ ภาษาคอมพิวเตอร์ที่ออกแบบมาเพื่อใช้ในการสร้างเว็บเพจที่เรียกดูผ่านทางเว็บเบราว์เซอร์ (Web Browser) เริ่มพัฒนาโดย ทิม เบอร์เนอรส์ ลี (Tim Berners Lee) ในปัจจุบัน HTML ล่าสุดคือ รุ่น 5 เป็นมาตรฐานหนึ่งของ ISO ซึ่งจัดการโดย World Wide Web Consortium (W3C) ในปัจจุบัน ทาง W3C ผลักดัน รูปแบบของ HTML แบบใหม่ ที่เรียกว่า XHTML รุ่นแรกคือ 1.0 (ม.ค.2543) ซึ่งมีโครงสร้างเป็นแบบ XML (eXtensible Markup Language)
ตัวอย่าง Hello World
ส่งข้อมูลออกเป็น ส่งออก: image ส่งออก: pdf
ปรับปรุงโปรแกรม source.pl : 2568-03-25
Thaiall.com