摘要: 1.实现一个菜单,可以切换,可以返回主菜单。(主菜单:1.登录 2.注册 3.输出水仙花数 4.退出程序。请选择: 选择后实现对应的功能) #include <stdio.h>#include <string.h> void mainMenu();void login();void regist() 阅读全文
posted @ 2021-11-27 23:03 林木森森121 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 1.编写程序,统计字符串中大写字母的个数。 #include<stdio.h> main() { char str[20]; int i,cnt; cnt=i=0; gets(str); while(str[i]!='\0') { if(str[i]>='A'&&str[i]<='Z') cnt++ 阅读全文
posted @ 2021-11-23 13:04 林木森森121 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 定义一个含有8个存储单元的实型数组,从键盘上接收数,然后逆序输出 #include<stdio.h> main() { double m[8]; int i; for(i=0;i<=7;i++) scanf("%lf",&m[i]); for(i=7;i>=0;i--) printf("%f",m[ 阅读全文
posted @ 2021-11-16 22:18 林木森森121 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 1. 猜数字: 随机产生一个0-99的数,猜猜看 如果大了 就提示大了点 如果小了 就提示小了点 直到猜对为止 #include <stdio.h> #include <stdlib.h> #include <time.h> int main() { int a,b,c; srand((unsign 阅读全文
posted @ 2021-11-16 21:30 林木森森121 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 输出以下图形 #include<stdio.h> main() { int i,j; for(i=1;i<=5;i++){ for(j=1;j<=i;j++){ printf("*"); } printf("\n"); } } #include<stdio.h> main() { int i,k,j 阅读全文
posted @ 2021-11-09 10:30 林木森森121 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 程序,使用while语句求和sum=1+3+5+…+21. #include<stdio.h> main()编写 { int i=1;int sum=0; while(i<=21) { sum+=i; i+=2; } printf("sum=%d\n",sum); } 2,编写程序,使用while语 阅读全文
posted @ 2021-11-02 10:59 林木森森121 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 编写程序,判断n是正数还是负数。 #include<stdio.h> main() { int n; printf("输入一个整数:\n"); scanf("%d",&n); if(n>0) printf("%d是正数!\n",n); else if(n==0) printf("%d既不是正数,也不 阅读全文
posted @ 2021-10-30 06:25 林木森森121 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 1.例4-8分数转成等级switch #include<stdio.h>main(){ int mark; printf("请输入学生的分数(0-100):\n"); scanf("%d",&mark); switch(mark/10) { case 10: case 9:printf("A\n") 阅读全文
posted @ 2021-10-29 13:12 林木森森121 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 1.编写程序,判断一个数n是正数还是负数。 #include<stdio.h> main() { float n; scanf("%f",&n); if(n>0) printf("正数!\n"); else if(n==0) printf("0既不是正数,也不是负数!\n"); else print 阅读全文
posted @ 2021-10-19 11:24 林木森森121 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 1,编写程序,使用scanf()函数接收整型,实型,字符型的变量,并分行依次输出。 main() { int a;#include<stdio.h> float b; char c; scanf("%d%f%c",&a,&b,&c); printf("%d\n%f\n%c\n",a,b,c); } 阅读全文
posted @ 2021-10-17 15:51 林木森森121 阅读(11) 评论(0) 推荐(0) 编辑