#include
#include
#include
int main服务器托管网()
{
FILE*fa,*fb,*fc;
int i,j,k;
char str[100],str1[100];
char tem;
if((fa=fopen(“A.txt”,”r”))==NULL) // A.txt 文件需要存在
{
printf(“error: cannot open A file!n”);
exit(0);
}
fgets(str,99,fa);
fclose(fa);
if((fb=fopen(“B服务器托管网.txt”,”r”))==NULL) // B.txt 文件需要存在
{
printf(“error: cannot open B file!n”);
exit(0);
}
fgets(str1,100,fb);
fclose(fb);
strcat(str,str1);
for(i=strlen(str)-1;i>1;i–)
for(j=0;j if(str[j]>str[j+1])
{
tem=str[j];
str[j]=str[j+1];
str[j+1]=tem;
}
if((fc=fopen(“C.txt”,”w”))==NULL) // 合并为 C.txt
{
printf(“error: cannot open C file!n”);
exit(0);
}
fputs(str,fc);
fclose(fc);
system(“pause”);
return 0;
}
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
相关推荐: 【Spring Boot】第一篇 创建简单的Spring Boot项目
导航 一. 简介 二. 创建简单的Spring Boot项目 1. 工具选择和版本确定 2. 创建步骤 三. 部署项目 四. 测试验证 一. 简介 Spring Boot是一个用于构建独立的、生产级别的Spring应用程序的框架。它简化了Spring应用程序的…