| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 378 人关注过本帖
标题:为什么运行结果会是这样?求解释···谢谢!
只看楼主 加入收藏
阶段丶成长
Rank: 2
来 自:中国
等 级:论坛游民
帖 子:41
专家分:32
注 册:2013-11-11
结帖率:87.5%
收藏
 问题点数:0 回复次数:0 
为什么运行结果会是这样?求解释···谢谢!
#include<stdio.h>
#include<stdlib.h>
#include<string.h>

int main()
{
    FILE *fp;
    char str[3][10],temp[10];
    int i,j,k,n=3;
    printf("please input the string :\n ");
    for( i=0; i<n; i++ )
        gets(str[i]);
    for( i=0; i<n-1; i++ )
    {
        k=i;
        for( j=i+1; j<n; j++ )
            if( strcmp( str[k],str[i] )>0 )
                k=j;
            if( k!=i )
            {
                strcpy( temp,str[i] );
                strcpy( str[i],str[k] );
                strcpy( str[k],temp );
            }
            if ( ( fp=fopen("F:\\CC\\string.dat","w") ) == NULL )
            {
                printf(" can't open the file \n ");
                exit (0);
            }
            printf("\n The new sequence:\n");
            for( i=0; i<n; i++ )
            {
                fputs(str[i],fp);
                fputs("\n",fp);
                printf("%s \n",str[i]);
            }
    }
    return 0;
}
运行结果:
please input the string :
 china
canada
india
 can't open the file
 Press any key to continue
搜索更多相关主题的帖子: include please 
2014-06-10 09:46
快速回复:为什么运行结果会是这样?求解释···谢谢!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.032060 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved