摘要:
Description The objective of the program you are going to produce is to evaluate boolean expressions as the one shown next: Expression: ( V | V ) & F 阅读全文
摘要:
int i ————定义整形变量i int *p———- p为指向整型变量的指针变量 int a[n]——- 定义整型数组a,它有n个元素 int *p[n]—– 定义指针数组p,它由n个指向整型数据的指针元素组成 int (*p)[n] —p为指向含n个元素的一维数组的指针变量 int f()—— 阅读全文
摘要:
One way that the police finds the head of a gang is to check people's phone calls. If there is a phone call between A and B, we say that A and B is re 阅读全文
摘要:
(2011年真题)完成如下程序:获得男学生,女学生以及所有学生的平均年龄。学生的年龄信息保存在C:盘根目录下,文件名为student.dat,一下是部分文件信息实例。(B-Boy,G-Girl) B 23 G 22 B 21 B 20 … 程序的输出结果参考如下形式: Average age of 阅读全文