Link Exchange
- - - - - - - - - - - - - - ผู้ให้การสนับสนุน- - - - - - - - - - - - - -
โจทย์นำมาจาก http://pantip.com/topic/32909617รับค่าตัวเลขจำนวนเต็ม 6 จำนวน แล้วแสดงผลจากค่ามากไปน้อย#includeint main(){ ???????? ?? ??????? ??????????????}
/* @Author: Mr.Suppakit Thongdee @Website: www.sourcecode.in.th */ #include <stdio.h> #include <conio.h> void main(){ const Maxnum =6; int iNum[Maxnum]; int i, j, k, temp; clrscr(); printf("Input %d number\n",Maxnum); //Input for(i=0; i<Maxnum; i++){ printf("[%d] = ", i+1); scanf("%d", &iNum[i]); } //Desc sorting for(j=0; j<Maxnum; j++){ for(k=0; k<Maxnum; k++){ //check point if( iNum[j] > iNum[k] ){ //swap temp = iNum[j]; iNum[j] = iNum[k]; iNum[k] = temp; } } } //Display result printf("result: "); for(i=0; i<Maxnum; i++){ printf("%d ", iNum[i]); } getch(); }
Home - Article - Tutorial - Sourcecode - Dev Handbook - Search - WebBoard - Links - About Us