分类: 整理

tty控制台显示中文

无评论

2011 年 10 月 15 日 at 下午 4:10分类:整理

安装fbterm

sudo apt-get update
sudo apt-get install fbterm
sudo gpasswd -a ty video

安装ucimf 更多…

冒泡排序法

无评论

2011 年 10 月 13 日 at 上午 11:09分类:整理

C语言

#include <stdio .h>
int main(void)
{
 int i,j,temp;
  int a[10];
 for(i=0;i&lt;10;i++)
  scanf ("%d,",&a[i]);
 for(j=0;j< =9;j++)
  {
    for (i=0;i&lt;10-j;i++)
   if (a[i]>a[i+1])
   {
     temp=a[i];
     a[i]=a[i+1];
     a[i+1]=temp;
    }
  }
  for(i=0;i&lt;10;i++)
  printf("%5d,",a[i]);
 printf("\n");
}

更多…