13期末2

#include "stdio.h"
void main(){
   int a = 7;
   int b = 1;
   printf ( "a&b = %d\n",a&b);
   printf( "a&&b = %d\n",a&&b);
}

13期末2

时间: 2024-10-13 00:41:49

13期末2的相关文章

13期末4

#include "stdio.h" void main(){ int sum=0,item=0; while(item<7){ item++; sum+=item; if(sum==7) break; } printf("%d\n",sum); } 13期末4

13期末3

#include "stdio.h" void main(){ int i ; for(i = 0; i<4; i++){ if( i==2) break; printf("%d ",i); } printf("\n"); for(i = 0; i<4; i++){ if( i==2) continue; printf("%d ",i); } printf("\n"); } 13期末3

13期末5

#include "stdio.h" void main(){ int a[]={1,2,3,4,5,6,7,8}; int i,x ,*p; x=1; p=&a[3]; for( i=0; i<3; i++ ) x *= *(p+i); printf("x=%d\n",x); } 13期末5

13期末1

#include "stdio.h" void main(){ int i=0, a[]={3,4,5,4,3}; do { a[i]++; }while(a[++i]<5); for(i=0;i<5;i++) printf("%d\n",a[i]) ; } 13期末1

13期末7

#include "stdio.h" void main(){ int x,y; for (x=0, y=0 ; (y!=123) &&(x<4); x++) y++; printf("x=%d,y=%d\n",x,y); } 13期末7

python 各模块

01 关于本书 02 代码约定 03 关于例子 04 如何联系我们 1 核心模块 11 介绍 111 内建函数和异常 112 操作系统接口模块 113 类型支持模块 114 正则表达式 115 语言支持模块 12 _ _builtin_ _ 模块 121 使用元组或字典中的参数调用函数 1211 Example 1-1 使用 apply 函数 1212 Example 1-2 使用 apply 函数传递关键字参数 1213 Example 1-3 使用 apply 函数调用基类的构造函数 122

转:Python标准库(非常经典的各种模块介绍)

Python Standard Library 翻译: Python 江湖群 10/06/07 20:10:08 编译 0.1. 关于本书 0.2. 代码约定 0.3. 关于例子 0.4. 如何联系我们 核心模块 1.1. 介绍 1.2. _ _builtin_ _ 模块 1.3. exceptions 模块 1.4. os 模块 1.5. os.path 模块 1.6. stat 模块 1.7. string 模块 1.8. re 模块 1.9. math 模块 1.10. cmath 模块

数据库期末考试复习题 第一章

作者 : Dolphin 原文地址:http://blog.csdn.net/qingdujun/article/details/27820507 一.单项选择题: 1. 位于用户和操作系统之间的一层数据管理软件是  C    . A.DBS  B.DB  C.DBMS  D.MIS 2. 数据库系统中的数据模型通常由    A     三部分组成. A.数据结构.数据操作和完整性约束 B.数据定义.数据操作和安全性约束 C.数据结构.数据管理和数据保护 D.数据定义.数据管理和运行控制 3. 

数据结构期末复习第五章数组和广义表

数据结构期末复习第五章 数组和广义表 二维数组A[m][n]按行优先 寻址计算方法,每个数组元素占据d 个地址单元.     设数组的基址为LOC(a11) :LOC(aij)=LOC(a11)+((i-1)*n+j-1)*d     设数组的基址为LOC(a00) :LOC(aij)=LOC(a00)+( i*n+j )*d    二维数组A[m][n]按列优先 寻址计算方法,每个数组元素占据d 个地址单元.     设数组的基址为LOC(a11) :LOC(aij)=LOC(a11)+((j