1
摘要: 输入一行字符,分别统计其中中英文字母、空格、数字和其他字符的个数 #include <stdio.h> //输入一行字符,分别统计其中中英文字母、空格、数字和其他字符的个数 int main(){ char c; int letters = 0; int spaces = 0; int digits 阅读全文
posted @ 2023-10-17 19:37 Bonne_chance 阅读(623) 评论(0) 推荐(0) 编辑
摘要: 计算100-1000内的水仙花 # include <stdio.h> //水仙花数 bool shuixianhua(int num); int main(){ int i; for (i=100;i<1000;i++){ if(shuixianhua(i) == 1){ printf("%d i 阅读全文
posted @ 2023-10-17 16:40 Bonne_chance 阅读(100) 评论(0) 推荐(0) 编辑
摘要: C语言-从键盘输入字符直到#结束,并将字符写入文件 #include <stdio.h> #include <stdlib.h> int main(){ FILE *fp = NULL; char filename[25]; char ch; printf("input saved file nam 阅读全文
posted @ 2023-10-17 15:59 Bonne_chance 阅读(434) 评论(0) 推荐(0) 编辑
摘要: C语言-将两个文件中的字符串拼接在一起写入第三个文件中 步骤1. 先创建两个文件A.txt和B.txt,分别写入123, 456 步骤2. 编写程序 #include<stdio.h> #include<stdlib.h> #include<string.h> //将A.txt和B.txt中的字符串 阅读全文
posted @ 2023-10-17 15:07 Bonne_chance 阅读(65) 评论(0) 推荐(0) 编辑
1