我想知道的是VC++6.0环境和TurboC2.0在使用“清屏”函数和从键盘读取字符函数有什么不同?

javaadu
博客专家认证
2009-05-21 05:17:22
#include<stdio.h>
#define MAX 255 //定义数组的最大长度
int R[MAX];
void Bubble_Sort(int n)
{
int i,j;
bool exchange; //交换的标志
for(i=1;i<n;i++) //最多进行n-1趟排序
{
exchange=0; //本趟排序之前,交志应
for(j=n-1;j>=i;j--) //对当前无序区R[i...n]自下向
{
if(R[j+1]<R[j]) //交换记录
{
R[0]=R[j+1]; //R[0]不是哨兵,仅做暂存单元
R[j+1]=R[j];
R[j]=R[0];
exchange=1; //发生了交换,故将交换
}
}
if(!exchange) //如果本趟排序未发生交换,提前终
return;
}

}
void main()
{
int i,n;
/*void Bubble_Sort(int n);*/
clrscr();
puts("Please input total element number of the sequence:");
scanf("%d",&n);
if(n<=0||n>MAX)
{
printf("n must more than 0 and less than %d.\n",MAX);
/*exit(0);*/
}
puts("Please input the elements one by one:");
for(i=1;i<=n;i++)
scanf("%d",&R[i]);
puts("The sequence you put is:");
for(i=1;i<=n;i++)
printf("%4d",R[i]);
Bubble_Sort(n);
puts("\nThe sequence after bubble_sort is:");
for(i=1;i<=n;i++)
printf("%4d",R[i]);
puts("\n Press any key to quit...");
/*getch();*/
}
...全文
84 1 打赏 收藏 转发到动态 举报
写回复
用AI写文章
1 条回复
切换为时间正序
请发表友善的回复…
发表回复
liok66 2009-05-29
  • 打赏
  • 举报
回复
我只知道vc里的清屏可用 system("cls"); 头文件<dos.h> 和TC的不同

69,369

社区成员

发帖
与我相关
我的任务
社区描述
C语言相关问题讨论
社区管理员
  • C语言
  • 花神庙码农
  • 架构师李肯
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧