#include <stdio.h> #include <string.h> int main() { FILE* fp1 = NULL; char ch; fp1 = fopen("test.txt", "w"); if(NULL==fp1) printf("error"); return -1; ch=getchar(); while (ch !='!'&& ch != EOF) {if(ch>'a'&&ch<'z') ch-=32; fputc(ch,fp1); } fclose(fp1); return 0; }
时间: 2023-10-24 11:06:54 浏览: 82
这是一段 C 语言的代码,它打开一个名为 "test.txt" 的文件,如果打开失败则输出 "error",然后将用户输入的字符转换为大写字母并写入这个文件中,直到输入字符为 '!' 或者文件结束符 EOF。最后关闭文件并返回 0。但是,这段代码有一个问题,即 return -1 语句会使程序直接退出,导致后面的代码无法执行,应该将其删除或者改为 return 0。另外,应该在 while 循环内部获取用户输入的字符,否则会一直写入同一个字符。
相关问题
1.创建文件夹: #include <sys/types.h> #include <sys/stat.h> #include <unistd.h> #include <iostream> using namespace std; int main() { string folder_name = "new_folder"; mkdir(folder_name.c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH); //创建文件夹 return 0; } 2.复制文件: #include <stdio.h> #include <stdlib.h> int main() { FILE *fp1, *fp2; //定义两个文件指针 char ch; fp1 = fopen("file1.txt", "r"); //打开要复制的文件 fp2 = fopen("file2.txt", "w"); //打开要复制到的文件 while ((ch = fgetc(fp1)) != EOF) { fputc(ch, fp2); //复制文件 } fclose(fp1); fclose(fp2); return 0; } 3.移动文件: #include <stdio.h> #include <stdlib.h> int main() { char old_path[100] = "old_folder/file1.txt"; char new_path[100] = "new_folder/file1.txt"; int result = rename(old_path, new_path); //移动文件 if (result == 0) { printf("移动成功\n"); } else { printf("移动失败\n"); } return 0; } 4.删除文件夹: #include <unistd.h> #include <stdio.h> int main() { char folder_name[100] = "new_folder"; int result = rmdir(folder_name); //删除文件夹 if (result == 0) { printf("删除成功\n"); } else { printf("删除失败\n"); } return 0; } 5.显示文件夹中的内容: #include <dirent.h> #include <stdio.h> int main() { DIR *dir; struct dirent *ent; char folder_name[100] = "new_folder"; dir = opendir(folder_name); //打开文件夹 while ((ent = readdir(dir)) != NULL) { printf("%s\n", ent->d_name); //遍历文件夹中的文件 } closedir(dir); return 0; } 6.查看文件内容: #include <stdio.h> int main() { FILE *fp; char ch; fp = fopen("file1.txt", "r"); //打开文件 while ((ch = fgetc(fp)) != EOF) { printf("%c", ch); //输出文件内容 } fclose(fp); return 0; } 7.修改文件权限: #include <sys/stat.h> #include <stdio.h> int main() { char file_name[100] = "file1.txt"; chmod(file_name, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH); //修改文件权限 return 0; } 8.搜索文件: #include <dirent.h> #include <stdio.h> #include <string.h> int main() { DIR *dir; struct dirent *ent; char folder_name[100] = "new_folder"; char search_name[100] = "file1.txt"; dir = opendir(folder_name); //打开文件夹 while ((ent = readdir(dir)) != NULL) { if (strcmp(ent->d_name, search_name) == 0) //搜索文件 { printf("找到文件:%s\n", ent->d_name); break; } } closedir(dir); return 0; }将上述代码整合成一个完整的程序代码
以下是整合后的完整代码:
```
#include <iostream>
#include <dirent.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <stdlib.h>
using namespace std;
int createFolder(string folder_name) {
int result = mkdir(folder_name.c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH); //创建文件夹
if (result == 0) {
cout << "创建文件夹成功" << endl;
} else {
cout << "创建文件夹失败" << endl;
}
return result;
}
int copyFile(char* old_path, char* new_path) {
FILE *fp1, *fp2; //定义两个文件指针
char ch;
fp1 = fopen(old_path, "r"); //打开要复制的文件
fp2 = fopen(new_path, "w"); //打开要复制到的文件
if (fp1 == NULL || fp2 == NULL) {
cout << "打开文件失败" << endl;
return -1;
}
while ((ch = fgetc(fp1)) != EOF) {
fputc(ch, fp2); //复制文件
}
fclose(fp1);
fclose(fp2);
return 0;
}
int moveFile(char* old_path, char* new_path) {
int result = rename(old_path, new_path); //移动文件
if (result == 0) {
cout << "移动文件成功" << endl;
} else {
cout << "移动文件失败" << endl;
}
return result;
}
int deleteFolder(char* folder_name) {
int result = rmdir(folder_name); //删除文件夹
if (result == 0) {
cout << "删除文件夹成功" << endl;
} else {
cout << "删除文件夹失败" << endl;
}
return result;
}
int displayFolder(char* folder_name) {
DIR *dir;
struct dirent *ent;
dir = opendir(folder_name); //打开文件夹
while ((ent = readdir(dir)) != NULL) {
cout << ent->d_name << endl; //遍历文件夹中的文件
}
closedir(dir);
return 0;
}
int displayFile(char* file_name) {
FILE *fp;
char ch;
fp = fopen(file_name, "r"); //打开文件
if (fp == NULL) {
cout << "打开文件失败" << endl;
return -1;
}
while ((ch = fgetc(fp)) != EOF) {
cout << ch; //输出文件内容
}
fclose(fp);
return 0;
}
int changePermission(char* file_name) {
int result = chmod(file_name, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH); //修改文件权限
if (result == 0) {
cout << "修改文件权限成功" << endl;
} else {
cout << "修改文件权限失败" << endl;
}
return result;
}
int searchFile(char* folder_name, char* search_name) {
DIR *dir;
struct dirent *ent;
dir = opendir(folder_name); //打开文件夹
while ((ent = readdir(dir)) != NULL) {
if (strcmp(ent->d_name, search_name) == 0) { //搜索文件
cout << "找到文件:" << ent->d_name << endl;
closedir(dir);
return 0;
}
}
cout << "未找到文件" << endl;
closedir(dir);
return -1;
}
int main() {
string folder_name = "new_folder";
char old_path[100] = "old_folder/file1.txt";
char new_path[100] = "new_folder/file1.txt";
char file_name[100] = "file1.txt";
char search_name[100] = "file1.txt";
createFolder(folder_name);
copyFile(old_path, new_path);
moveFile(old_path, new_path);
deleteFolder("new_folder");
displayFolder("new_folder");
displayFile(file_name);
changePermission(file_name);
searchFile("new_folder", search_name);
return 0;
}
```
现有一个已存放了用户加密信息的文件myfile.txt,该文件的生成就是把用户从键盘输入的字符与'x'进行异或运算,用户输入以'\n'结束。现在需要写一个程序,完成用户信息的加密并存放到myfile.txt中。 有两位同学想实现上述功能,分别完成了一个程序。 下列对两个程序的分析中正确的说法是( )。 //学生甲的程序 #include <stdio.h> #include <string.h> #include <stdlib.h> int main(void) { FILE *fp; int i; char ch; fp=fopen("myfile.txt","w+"); if(fp==NULL) { printf("File open error!\n"); exit(0); } ch=getchar(); while(ch!='\n') { ch=ch^'x'; fputc(ch,fp); ch=getchar(); } fclose(fp); return 0; } //学生乙的程序 #include <stdio.h> #include <string.h> #include <stdlib.h> int main(void) { FILE *fp; int i=0; char sec[100]; fp=fopen("myfile.txt","r+"); if(fp==NULL) { printf("File open error!\n"); exit(0); } gets(sec); while(sec[i]!='\0') { sec[i]=sec[i]^120; i++; } fputs(sec,fp); fclose(fp); return 0; }
学生甲的程序是将用户输入的字符与'x'进行异或运算后写入文件myfile.txt中,学生乙的程序是将已存在文件myfile.txt中的内容读入到char数组sec中,然后将数组sec中每个字符与120进行异或运算后再写回文件中。
由于学生乙的程序是以"r+"方式打开文件myfile.txt的,因此在写入文件时会覆盖原有的内容。而学生甲的程序是以"w+"方式打开文件myfile.txt的,每次写入文件都会截断文件并覆盖原有内容。因此,如果学生甲和学生乙的程序都运行,则最终文件myfile.txt中只会包含学生乙程序中加密后的内容。
因此,正确的说法是:学生乙的程序会覆盖学生甲程序写入的内容,最终文件中只包含学生乙程序中加密后的内容。
阅读全文