- 博客(26)
- 收藏
- 关注
原创 11.21--复杂计算器
// 只能计算加减乘除#include <stdio.h>#include <stdlib.h>int main(){ int a,b; //定义a,b两个整形常量 char c; // 定义一个字符型 scanf("%d%c%d",&a,&c,&b); if(c=='+') //选择结构if printf("%d",a+b); if(.
2021-12-01 21:28:57 651
原创 11.21-陶陶摘苹果--摘自书籍
//输入文件包括两行数据,第一行包括10个100~200之间(不包括100和200)的整数,单位cm,//分别表示10个苹果到地面的高度,两个相邻的整数之间用1个空格隔开,第二行包括1个100~120的//包括100和120的整数,以cm为单位,表示陶陶把手伸直时能够达到的最大高度//输出格式 只包括一行,这一行只包括一个整数,表示陶陶能够摘到的苹果数目#include <stdio.h>#include <stdlib.h>int main(){ int.
2021-11-28 14:16:00 461
原创 11.21--逆序输出
#include <stdio.h>#include <stdlib.h>int main(){ int a[10],i; for(i=0;i<=9;i++) { a[i]=i*i; } for(i=0;i<=9;i++) { printf("%d ",a[i]); } system("pause"); return 0; }--.
2021-11-28 14:12:18 272
原创 11.20-猜数游戏
#include <stdio.h>#include <stdlib.h>#include <time.h>int main(){ int a,b; srand((unsigned)time(NULL)); a = rand()%100; while(1) { scanf("%d",&b); if(b>a) printf("大了,请继续\n"); .
2021-11-28 14:11:02 2798
原创 11.18-水仙花数 -1000以内
//有一种三位数“这个数的个位数的立方”,加上十位数的立方,加上百位数的立方,恰好等于这个数//这种三位数称为“水仙花数”、//例如:153=1*1*1+5*5*5+3*3*3//三重嵌套循环产生100~999-----水仙花数的第一步代码#include <stdio.h>#include <stdlib.h>int main(){ int i,j,k; for(i=1;i<=9;i++) { for(j=0;j&.
2021-11-28 14:08:40 489
原创 11.18-continue-打印100以内的偶数
#include <stdio.h>#include <stdlib.h>int main(){ int i; for(i=1;i<=100;i++) { if(i%2==1) { continue; } printf("%d ",i); } system("pause"); return 0;}
2021-11-28 14:02:18 1870
原创 11.18-break-判断输入的一个数是质数还是合数
#include <stdio.h>#include <stdlib.h>int main(){ int a,count,i; // count为自定义变量 count=0; // count初始值为0 scanf("%d",&a); // &为取地址符 -- for(i=2;i<=a-1;i++) { if(a%i==0) { .
2021-11-28 14:00:45 185
原创 11.17-判断一个数是质数还是合数
//该代码只适用于判断较小的数,太大的数不适用**//质数:只有1和它本身两个约数的数//合数:比1大但不是质数的数称为合数#include <stdio.h>#include <stdlib.h>int main(){ int a; a=5; if(a%2!=0 && a%3!=0 && a%4!=0) printf("质数\n"); else printf("合.
2021-11-28 13:56:24 617
原创 11.17-while循环 循环多少次? 打印多少个?
#include <stdio.h>#include <stdlib.h>int main(){ int a,b; a=1; while(a<=2) // 这里的2 { b=1; while(b<=3) // 这里的3 { printf("ok"); b=b+1; //打印2*3个ok .
2021-11-28 13:55:10 515
原创 11.16--走动‘H‘
#include <stdio.h>#include <stdlib.h>#include <windows.h>int main(){ int a,b; a=0; //a的初始值为0, while(a<=3) //a循环,a>0成立,进入外循环 { system("cls"); //清屏 b=1; //b的初始赋值为1 while(b<=a) //b循环.
2021-11-28 13:52:37 190
原创 11.16--走动‘H‘-走三步
#include <stdio.h>#include <stdlib.h>#include <windows.h>int main(){ int a,b; a=0; while(a<=2) //a循环 { system("cls"); //清屏 b=1; while(b<=a) //b循环 { printf(" "); //.
2021-11-28 13:50:11 139
原创 for循环--11.16
//计算1*2*3.....*10#include <stdio.h>#include <stdlib.h>int main(){ int i,sum; sum=1; for(i=1;i<=10;i++) { sum=sum*i; } printf("%d",sum); system("pause"); return 0;}
2021-11-27 12:08:25 364
原创 for循环--菱形-11.16
//for嵌套编写的菱形#include <stdio.h>#include <stdlib.h>int main(){ int n,i,h; n=5; for(i=1;i<=n;i++) { for(h=i;h<n;h++) printf(" "); for(h=i;h>0;h--) printf("*"); .
2021-11-27 12:07:20 106
原创 走动的H--11.16
#include <stdio.h>#include <stdlib.h>#include <windows.h>int main(){ int a,b; a=0; while(a<=100) { system("color 5a"); //背景 字体颜色 system("cls"); // 清屏 b=1; while(b<=a) .
2021-11-27 12:00:16 100
原创 while循环--数字图形
#include <stdio.h>#include <stdlib.h>int main(){ int n,a,b; a=1; scanf("%d",&n); while(1<=n<=30) { while(a<=n) { b=1; while(b<=a) { prin.
2021-11-27 11:57:25 446
原创 if-else-判断一个数是否为奇数
#include <stdio.h>#include <stdlib.h>int main(){ int a; scanf("%d",&a); if (a%2!=0) printf("yes"); else printf("no"); system("pause"); return 0;}
2021-11-27 11:50:11 1216
原创 while循环
#include <stdio.h>#include <stdlib.h>int main(){ int a,b; a=1; while(a<=3) { b=1; while(b<=5) { printf("*"); b=b+1; } printf("\n"); a=a+1; } .
2021-11-27 11:48:53 250
原创 字符型--char
#include<stdio.h>int main(){ char a; scanf("%c",&a); printf("你刚才输入的字符是%c",a)system("pause"); //暂停 return 0;}
2021-11-27 11:47:18 82
原创 11.15-判断一个数是否为质数
#include <stdio.h>#include <stdlib.h>int main(){ int k,a,b,i,count1,count2; for(k=4;k<=100;k=k+2) { for(a=2;a<=k/2;a++) { //判断a是否为质数 count1=0; for(i=2;i<=a-1;i++) ...
2021-11-23 13:27:22 370
原创 11.15--倒计时
#include <stdio.h>#include <stdlib.h>#include <windows.h>int main(){ int a; a=1741; system("color 0a"); while(a>=0) { system("cls"); printf("%d",a); Sleep(10); a=a-1; } sy...
2021-11-23 13:25:12 112
原创 11.14--if-else
#include <stdio.h>#include <stdlib.h>int main(){ int a; scanf("%d",&a); if (a>=0) { printf("yes"); } else { printf("no"); } system("pause"); return 0;}...
2021-11-23 13:24:30 228
原创 11.14--a,b,c中谁最大
#include <stdio.h>#include <stdlib.h>int main(){ int a,b,c; scanf("%d %d %d",&a,&b,&c); if (a>=b) { if (a>=c) printf("%d",a); else { printf("%d",c); }...
2021-11-23 13:22:20 2893
原创 11.14--
#include <stdio.h>#include <stdlib.h>int main(){ system("color 0a"); while(1) { printf("你 好 "); } system("pause"); return 0;}
2021-11-23 13:19:49 276
原创 11.14--if
#include <stdio.h>#include <stdlib.h>int main(){ if (1000) { printf("yes"); } else { printf("no"); } system("pause"); return 0;}
2021-11-23 13:18:47 230
原创 初学转载--if语句
#include <stdio.h>#include <stdlib.h>int main(){ int a; scanf("%d",&a); if (0<a<10){ printf("yes\n");} else { printf("no\n"); }/* if (a%10!=0){ printf("no\n");} if...
2021-11-23 13:16:00 59
原创 加法计算器 hh@
#include<stdio.h>int main(){ int a,b,c; printf("这是一个加法计算器,欢迎你使用!\n"); printf("----------------------------------\n"); printf("请输入第一个数(输入完毕后请按回车)\n"); scanf("%d",&a); printf("请输入第二个数(输入完毕后请按回车)\n"); scanf("%d",&b)...
2021-11-23 13:12:09 271
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人