摘要: 1 定义圆形半径,求面积。 package 第三周作业; import java.util.Scanner; public class test { public static void main(String[] args) { // TODO Auto-generated method stub 阅读全文
posted @ 2023-03-21 13:07 包洪帅 阅读(6) 评论(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-12-03 22:16 包洪帅 阅读(21) 评论(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-12-03 22:15 包洪帅 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 1, 输出正三角 #include<stdio.h> main(){ int i,j; for(i=1;i<=6;i++){ for(j=1;j<=i;j++){ printf("*"); } printf("\n"); } 输出倒三角 #include<stdio.h> main(){ int i 阅读全文
posted @ 2021-12-03 22:14 包洪帅 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 猜数字: 随机产生一个0-99的数,猜猜看 如果大了 就提示大了点 如果小了 就提示小了点 直到猜对为止 #include <stdio.h> #include <stdlib.h> #include <time.h> main(){ int x,guess; srand((unsigned int 阅读全文
posted @ 2021-12-03 22:14 包洪帅 阅读(18) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>main(){int n;printf("输入一个整数:\n");scanf("%d",&n);if(n>0)printf("%d是正数!\n",n);elseif(n==0)printf("%d既不是正数,也不是是负数!\n",n);elseprintf("%d是 阅读全文
posted @ 2021-12-03 22:13 包洪帅 阅读(15) 评论(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语句求和sum 阅读全文
posted @ 2021-12-03 22:13 包洪帅 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 1.教材p52 例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-12-03 22:12 包洪帅 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 编写程序,判断一个数n是正数还是负数. include<stdio.h> main() { float n; scanf("%f",&n); if(n>0) {printf("正数\n");} else if (n==0) {printf("0既不是正数,也不是负数!\n");} else prin 阅读全文
posted @ 2021-10-24 21:13 包洪帅 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 1.编写程序,使用scanf()函数接收整形、实型、字符型的变量,并分行依次输出 #include<stdio.h> main() { int a; 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 23:42 包洪帅 阅读(32) 评论(0) 推荐(0) 编辑