程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> string-c語言問題 有點難 求幫助

string-c語言問題 有點難 求幫助

編輯:編程綜合問答
c語言問題 有點難 求幫助

Read the string file (file name: data.txt)
Save the output file(same file) after conversion to uppercase

圖片說明

圖片說明

最佳回答:


 #include <stdio.h>
#include <stdlib.h>
void main()
{
FILE *pf;
FILE *fp=fopen("data.txt","w");
char ch;
pf=fopen("data1.txt", "r");
ch = fgetc(pf);
fprintf(fp,"%c",ch);
while (ch!=EOF)
{
if (ch >= 'a' && ch <= 'z') ch = ch - 'a' + 'A'; else if (ch >= 'A' && ch <= 'Z') ch = ch - 'A' + 'a';
fprintf(fp,"%c",ch);
ch = fgetc(pf);
}
fclose(fp); 
fclose(pf); 
}
system("del data.txt");
system("ren data1.txt data.txt")
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved