从键盘输入一个字符串,将大写转换成小写,然后输出到磁盘c语言文件中保存从键盘输入一个字符串,将大写转换成小写,然后输出到磁盘文件中保存
时间: 2024-03-05 12:54:02 浏览: 57
好的,我来为你编写一个简单的 C 语言程序来实现这个功能:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char input[100];
printf("请输入一个字符串:");
scanf("%s", input);
// 将大写字母转换为小写字母
int i = 0;
while (input[i]) {
input[i] = tolower(input[i]);
i++;
}
// 将转换后的字符串输出到磁盘文件中
FILE *fp = fopen("output.txt", "w");
if (fp != NULL) {
fprintf(fp, "%s", input);
fclose(fp);
printf("已将转换后的字符串保存到 output.txt 文件中!\n");
} else {
printf("文件打开失败!\n");
}
return 0;
}
```
以上代码中,我们使用了 `tolower` 函数将输入的字符串中的大写字母转换为小写字母,并将转换后的字符串输出到名为 `output.txt` 的磁盘文件中。你可以将以上代码复制到本地的 C 语言开发环境中进行编译和运行,验证程序的正确性。
相关问题
2.从键盘输入一个字符串,将小写字母全部转换成大写字母,然后输出到一个磁盘文件“test”中保存,输入字符串时以!结束输入。用c语言做
在C语言中,你可以使用`ctype.h`库中的`toupper`函数将字符转换为大写,并结合`fopen`、`fprintf`和`fclose`函数来操作文件。下面是一个简单的示例程序:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char input[100];
FILE *fp;
// 打开文件 "test.txt" 进行写入
fp = fopen("test.txt", "w");
if (fp == NULL) {
printf("Failed to open file.\n");
return 1;
}
while (1) {
// 读取用户输入,直到遇到 '!'
fgets(input, sizeof(input), stdin);
if (input[0] == '!') {
break; // 用户输入 ! 结束循环
}
// 将字符串中的每个字符转为大写并写入文件
for (int i = 0; input[i]; i++) {
input[i] = toupper(input[i]);
}
fprintf(fp, "%s", input); // 写入转换后的字符串
fprintf(fp, "\n"); // 每行结束后添加换行符
}
// 关闭文件
fclose(fp);
printf("Data saved to test.txt.\n");
return 0;
}
```
用c语言 从键盘输入一个字符串,将其中的小写字母全部转换成大写字母,然后输出到一个磁盘文件“test”中保存。输入的字符串以回车结束。
下面是实现该功能的C语言代码:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char str[100];
printf("请输入一个字符串:");
fgets(str, sizeof(str), stdin); // 从键盘输入字符串
for (int i = 0; str[i] != '\0'; i++) {
str[i] = toupper(str[i]); // 将小写字母转换为大写字母
}
FILE *fp;
fp = fopen("test", "w"); // 打开文件
fputs(str, fp); // 将字符串写入文件
fclose(fp); // 关闭文件
printf("已将字符串保存到文件test中。\n");
return 0;
}
```
程序中使用了`fgets()`函数从键盘输入字符串,并使用`toupper()`函数将其中的小写字母转换为大写字母。然后使用文件操作函数将字符串写入文件中。
阅读全文