c语言经典算法100例.rar

源代码在线查看: 6.c

软件大小: 243 K
上传用户: xmmgood
关键词: 100 c语言 算法
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include "stdio.h"
				main()
				{FILE *fp;
				char str[100],filename[10];
				int i=0;
				if((fp=fopen("test","w"))==NULL)
				{ printf("cannot open the file\n");
				exit(0);}
				printf("please input a string:\n");
				gets(str);
				while(str[i]!='!')
				{ if(str[i]>='a'&&str[i]				str[i]=str[i]-32;
				fputc(str[i],fp);
				i++;}
				fclose(fp);
				fp=fopen("test","r");
				fgets(str,strlen(str)+1,fp);
				printf("%s\n",str);
				fclose(fp);
				}
							

相关资源