VC6.0中这段代码一运行就停止工作,为什么呢?

2024-12-05 02:43:42
推荐回答(1个)
回答1:

考虑你写的语句的语法,应修改:
(1)改 char temp[100]; 为 char temp;
(2)交换用 temp=string[j+1]; string[j+1]=string[j]; string[j]=temp;
你的比较方法是否是你要的,我没细看和猜测。

通常排队用:
for (i=0;iif (str[i]>str[j]) { t=str[i]; str[i]=str[j];str[j]=t;};