摘要: 1.定义圆形半径,求面积 public class text1 { public static void main(String[] args) { // TODO Auto-generated method stub int r=4; double pai=3.14; double area; a 阅读全文
posted @ 2023-03-17 22:48 祝运红 阅读(99) 评论(0) 推荐(0)
摘要: 1.实现一个菜单可以切换,可以返回主菜单 主菜单 (1).登录 (2).注册 (3).输入水仙花数 (4).退出程序 请选择: 选择后实现对应的功能 #include<stdio.h>#include<string.h>void mainMenu();void login();void return 阅读全文
posted @ 2021-12-08 11:48 祝运红 阅读(14) 评论(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++;i++;}prin 阅读全文
posted @ 2021-11-27 22:14 祝运红 阅读(42) 评论(0) 推荐(0)
摘要: 1.定义一个含有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[i]);} 阅读全文
posted @ 2021-11-20 16:34 祝运红 阅读(21) 评论(0) 推荐(0)
摘要: 猜数字: 随机产生一个0-99的数,猜猜看 如果大了 就提示大了点 如果小了 就提示小了点 直到猜对为止 #include <stdio.h> #include <stdlib.h> #include <time.h> main(){ int x,guess; srand((unsigned int 阅读全文
posted @ 2021-11-14 21:52 祝运红 阅读(23) 评论(0) 推荐(0)
摘要: 1.输出以下图形 * ** *** **** ***** #include<stdio.h> main() { int i,j,k; for(i=1;i<=5;i++) { for(j=1;j<=5-1;j++){ printf(" "); } for(k=1;k<=i;k++){ printf(" 阅读全文
posted @ 2021-11-12 18:42 祝运红 阅读(19) 评论(0) 推荐(0)
摘要: 1.编写程序,使用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 17:00 祝运红 阅读(30) 评论(0) 推荐(0)
摘要: 1.编写程序判断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 16:07 祝运红 阅读(13) 评论(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");elseprintf("负数\n"); 阅读全文
posted @ 2021-10-30 15:19 祝运红 阅读(39) 评论(0) 推荐(0)
摘要: #include<stdio.h> main() { int mark; printf("请输入学生的分数(0-100):\n"); scanf("%d",&mark); switch(mark/10) { case 10: case 9:printf("A\n"); case 8:printf(" 阅读全文
posted @ 2021-10-29 13:07 祝运红 阅读(13) 评论(0) 推荐(0)