006_stdc_C语言基础
2021-01-21 02:13
标签:can flush 32位 第一个 条件 元素 怎么 fflush 解决 回顾: 在同一函数里面 写在前面的语句先执行 学完 分支 和循环语句 不一是上面的情况 //先输出一个二进制数的高位 不用循环的写法 循环写法 32位机器中的二进制 continue; 结束本次循环,后面语句不执行 time(0); 多重循环 0 九九乘法表 1 * 1 = 1 2元的张数 = 0 5元的张数 = 4 while语句 while(条件表达式) //相当于for 中间的语句 } linux系统下执行以下代码 windows 系统下则相反,执行一次会延时设定的时间 c=怎么东西? C的数据成分 数组 如果声明 一个数组 int a[5]; --> 存储5个整型数据的数组 a[0] --> 第一个元素 方法2 006_stdc_C语言基础 标签:can flush 32位 第一个 条件 元素 怎么 fflush 解决 原文地址:https://www.cnblogs.com/tanzizheng/p/12898116.html //先输出一个二进制数的高位
char c = 0x53;//0101 0011
//1次
if(c & 0x80){ //0x80 -> 1000 0000
printf("1");
}
else{
printf("0");
}
//2次
if(c & 0x40){
printf("1");
}
else{
printf("0");
}
//3次
if(c & 0x20){
printf("1");
}
else{
printf("0");
}
//4次
if(c & 0x10){
printf("1");
}
else{
printf("0");
}
//5次
if(c & 0x08){
printf("1");
}
else{
printf("0");
}
//6次
if(c & 0x04){
printf("1");
}
else{
printf("0");
}
//7次
if(c & 0x02){
printf("1");
}
else{
printf("0");
}
//8次
if(c & 0x01){
printf("1");
}
else{
printf("0");
}
//先输出一个二进制数的高位
char c = 0x53;//0101 0011
for (int i =7;i>=0;i--)
{
if(c & 0x1//0x80 -> 1000 0000 1
printf("1");
}
else{
printf("0");
}
}
int j=0;
int c = 0x53; //0101 0011
printf("输入一个数:");
scanf("%x",&c);
for(int i = 31;i>=0;i--)
{
if(c & 0x1//1
{ //1000 0000
printf("1");
j++;
}
else
{
printf("0");
}
}
printf("\n");
printf("1的个数%d\n",j);
break;跳出循环 后的语句不会被执行#include
返回 当前系统的秒数
1970 1.1 0:0:0#include
#include
srand(time(0));
price = rand()%100*10+8000; //8000 - 8990
#include
#include
01
012
0123
01234#include
1 * 2 = 2 2 * 2 = 4
1 * 3 = 3 2 * 3 = 6 3 * 3 = 9
1 * 4 = 4 2 * 4 = 8 3 * 4 = 12 4 * 4 = 16
1 * 5 = 5 2 * 5 = 10 3 * 5 = 15 4 * 5 = 20 5 * 5 = 25
1 * 6 = 6 2 * 6 = 12 3 * 6 = 18 4 * 6 = 24 5 * 6 = 30 6 * 6 = 36
1 * 7 = 7 2 * 7 = 14 3 * 7 = 21 4 * 7 = 28 5 * 7 = 35 6 * 7 = 42 7 * 7 = 49
1 * 8 = 8 2 * 8 = 16 3 * 8 = 24 4 * 8 = 32 5 * 8 = 40 6 * 8 = 48 7 * 8 = 56 8 * 8 = 64
1 * 9 = 9 2 * 9 = 18 3 * 9 = 27 4 * 9 = 36 5 * 9 = 45 6 * 9 = 54 7 * 9 = 63 8 * 9 = 72 9 * 9 = 81 for(int i=0;i40;i++)
{
for(int j=0;j40;j++)
{
if((i+j == 40)&&(2*i+4*j)==100)
{
printf("i = %d j = %d\n",i,j);
}
}
}
for(int i=0;i10;i++)
{
for(int j=0;j4;j++)
{
if(i*2+j*5 == 20)
{
printf("2元的张数 = %d 5元的张数 = %d\n",i,j);
}
}
}
2元的张数 = 5 5元的张数 = 2
2元的张数 = 10 5元的张数 = 0
{
//条件为真 循环执行的语句 int score = -1;
while(score0 || score>100)
{
printf("输入成绩:");
scanf("%d",&score);
}
int score = -1;
while(1) //死循环
{
printf("输入成绩:");
scanf("%d",&score);
if(score >=0 && score 100)
{
break;//跳出while循环
}
}
int score = 80;
do
{
printf("输入成绩:");
scanf("%d",&score);
}while(score0 || score>100);
int i = 0;
label:
if(i5)
{
printf("hello\n");
i++;
goto label;
}
over:
int x = 0;
for(int k = 0;k20;k++)
{
for(int i=0;i10;i++) //i 代表2圆的张数
{
for(int j=0;j4;j++) //j 代表5圆的张数
{
if(i*2+j*5+ k== 20)
{
x++;
printf("1圆=%d 2圆的张数=%d 5圆的张数=%d\n",k,i,j);
goto over;//直接跳出所有循环
}
}
}
}
over:
printf("共%d种方案\n",x);
/*
* 内核 有输出缓冲区
* 1. \n 会将 缓冲区内容 推送到屏幕
* 2. 程序结束,缓冲区内容 推送到屏幕
* 3. 缓冲区满
* 4. fflush(stdout);
*/
#include
}
return 0;
}
#include
#include
第一次读的时候a,
但回车还在里面,
它把回车也当输入了,这是输入缓冲区引起的
解决:#include
连续 大小 的某一种类型 存储空间
变量名 (合法标示符)
存储元素的数据类型
元素的个数
....
a[4] --> 第五个元素#include
#include
int a[5] ;
int i=0;
for(i = 0;i5;i++)
{
printf("输入一个数:");
scanf("%d",&a[i]);
}
printf("i = %d\n",i); //5
int sum = 0;
for(i = 0;i5;i++)
{
sum = sum + a[i];
}
printf("sum = %d\n",sum);
for(i = 0;i5;i++)
{
printf("%d\n",a[i]);
}
return 0;