C++试卷(华南理工大学)

华南理工大学期末考试 

高级语言程序设计(I)》A

注意事项:    1. 考前请将密封线内各项信息填写清楚;

            2. 所有答案写在答题纸上,答在其它地方无效;

3.考试形式:闭卷;

           4. 试卷可做草稿纸,试卷必须与答题纸同时提交;

5. 本试卷共五大题,满分100分,考试时间120分钟

Question 1 (2 points for each, 20 points for total) Choose the correct answer

1) To initialize an array of characters which one is NOT correct? (       )

      A) char s1[3]={'a','b','c'};          B) char s2[5]="abc";

       C) char s3[]={'m','n','s','r'};     D) char s4[4]="ijkl";

D需要分配5个空间

A则不需要

2)    If the array name as an argument, the function call passed  (    A ) to the parameter.

A) the starting address of the array           

B) the value of the first element

     C) all the elements values of an array

D) the number of array elements

传递(A)数组的起始地址。

3)    If we have : int x=3, y=2;  double a=2.9, b=3.5;  the value of expression (x+y)/2+(int)a%(int)b   would be(      )。

A)  1                    B)  2                  C)   3                D)   4

D

4)    In the following statements about the overload function which one is correct? (      )

A) overload functions must have different return types

B) overload functions must have different numbers of parameters

C) overload functions must have a different parameter list

D) overload functions’ name can be different

C

5)    In the following data types which one does not belong to the basic data types in C ++. (      )

A)     int         B)   double         C) char      D) class     

D显而易见

6)    We have :  double fun( double l ); typedef double ft ( double ) ;

 ft * pfun[2];    pfun[0]=fun;,in the following function calls which one is NOT correct (     )?

A)( *pfun[0] )(3.14)                      B)fun(3.14)

C)   ( pfun[0] )(3.14)                     D)( &pfun[0] )(3.14)

D

7)    in the following identifiers groups, which one is both legitimate user identifiers? (      )

A)    _0123  ssiped                B)   del-word  signed

C)      list  *jer                          D) keep%  wind

 A

8)    The operand data type on both sides of logical operators is (      )

A) can only be 0 or 1

B) can only be a positive integer or 0

C) can only be an integer or character data

D) can be any type of legitimate data

D

9)    In the following statements, which one is correct to initialize a two-dimensional array? (   B,D   )

A)   int a[2][]={{1,0,1},{5,2,3}};

B)    int a[][3]={{1,2,3},{4,5,6}};

C)    int a[2][4]={{1,2,3},{4,5},{6}};

D)   int a[][3]={{1,0},{},{1,1}};

10)  For the members of class, the implies access is ( )

(A) public;   (B)private;   (C) protected;    (D) static;

默认私有

Question 2: ( 20 points )

What is the output of the following code fragment?

Part1 (3 points)

#include  <iostream>

using namespace std;

main()

{  int  x=1,y=0,a=0,b=0;

        switch(x)

        {  case  1:

                switch(y)

{   case  0:a++;  break;

                case  1:b++;  break;

}

case 2:a++; b++; break;

case 3:a++; b++;

}

cout<<"a="<<a<<",b="<<b<<endl;

}

 

Output

a=2,b=1

Part2( 3 points)

#include <iostream>

int f1(int a,int b) {return a%b*5;}

int f2(int a,int b) {return a*b;}

int f3(int(*t)(int, int),int a,int b) { return (*t)(a, b);}

void main()

{      int (*p)(int, int) ;

    p=f1 ;  cout<<f3(p, 5, 6)<<endl ;

    p=f2 ;  cout<<f3(p, 7, 8)<<endl ;

}

Output

25

56

Part3 (3 points)

#include  <iostream>

using namespace std;

int fun(int n)

{      if(n==1)return 1;

      else

    return(n+fun(n-1));

}

main()

{      int x;

cin>>x; x=fun(x);

cout<<x;

}

Output

55

When the input for x is 10,the output is

Part4 (3 points)

#include<iostream>

using namespace std;

void fun(int a,int b)

{      int k;

        k=a;a=b;b=k;

}

void main()

{      int a=4,b=7,*x,*y;

x=&a;y=&b;

fun(*x,*y);

cout<<"No.1:"<<a<<','<<b<<endl;

fun(a,b);

cout<<"No.1:"<<a<<','<<b<<endl;

}

No.1:4,7

No.1:4,7

Part 5( 4 points)

#include<iostream>

using namespace std;

int fun(int n)

{     static int a=3;

        int t=0;

        if(n%2)

{      static int a=5; t+=a++; }

    else

{      static int a=5;  t+=a++; }

    return t+=a++;

}

void main()

{ int i,s=0;

  for(i=0;i<3;i++) s+=fun(i);

  cout<<s<<endl;

}

Output

28

Part 6( 4 points)

#include<iostream>

using namespace std;

void main()

{      char ch[2][6]={"2100","0846"},*pch[2];

        int i,j,s=0;

        for(i=0;i<2;i++)

                 pch[i]=ch[i];

        for(i=0;i<2;i++)

                 for(j=0;pch[i][j]>='0' && pch[i][j]<='9';j+=2)

                         s=10*s+pch[i][j]-'0';

        cout<<s<<endl;

Output

2004

}

Question 3    Short answers (20 points)

Part 1 (2 points)

In the function prototype int fun(int, int=0);  what does the “int=0” mean?

参数默认值是0

Part 2 (2 points)

After executing the following statements, what is the values of x and y ?

int x, y; x=y=1;    ++x||++y;

__x=2,y=1____________

Part 3 (2 points)

When the following statements are running, how many times does the loop execute?

int i=0, x=1;  do {  x++;   i++;  }  while ( !x&&i<=3 );

_1次__

Part 4  (8 points,2 points for each)

Insert the braces in the following code to produce a specified output. Please NOTE that the program may not make any other changes except braces.

if (y==8)

if (x==5)

cout << “@@@@” << endl;

else

cout << “####” <<endl;

cout << “$$$$” <<endl;

cout << “&&&&” <<endl;

  1. When x=5 and y=8, The output is:

@@@@

$$$$

&&&&

  1. When x=5 and y=8, The output is:

@@@@

  1. When x=5 and y=8, The output is:

@@@@

&&&&

  1. When x=5 and y=7, The output is:

####

$$$$

&&&&

{ } 可有可无,{ }必须有

  1. if (y==8)

if (x==5)

cout << “@@@@” << endl;  }

else

{   cout << “####” <<endl;  }

cout << “$$$$” <<endl;

cout << “&&&&” <<endl;

2) if (y==8)

if (x==5)

{   cout << “@@@@” << endl;  }

else

{  cout << “####” <<endl;

cout << “$$$$” <<endl;

cout << “&&&&” <<endl;   }

  1. if (y==8)

if (x==5)

cout << “@@@@” << endl;  }

else

{    cout << “####” <<endl;

cout << “$$$$” <<endl;    }

cout << “&&&&” <<endl;

4) if (y==8)

if (x==5)

cout << “@@@@” << endl;  }

else

{   cout << “####” <<endl;

cout << “$$$$” <<endl;

cout << “&&&&” <<endl;   }

Part 5  (6 points,1 point for each)

Find the errors and fix it in each of the following program segments. Assume the following declarations and statements:

void * sPtr = 0;

int number;

int z[5] = {1,2,3,4,5};

int * zPtr;

fix each statement.

  1. // use pointer point the starting address of the array z

zPtr=z[0];

  1. // use pointer to get first value of array

number = zPtr;

  1. // assign the third element of array z (the value 3) to number

number = *zPtr[ 2 ];

  1. // print entire array z

for( int i=0; i<=5; i++)

       cout<<zPtr[i] <<endl;

  1. //let the pointer point the second element of the array

zPtr=2;

  1. // assign the value pointed by zPtr to number

number = zPtr;

zPtr=z / zPtr=&z[0]

_________________________________________________________

   number=zPtr[0]  /  number=*zPtr

_________________________________________________________

   Number=zPtr[2]  /  number = *(zPtr+2)

_________________________________________________________

  1.  

i<5

_________________________________________________________

   zPtr=z+1   /  zPtr=&a[1]

_________________________________________________________

   Number=*zPtr

__________________________

Question 4: Fill in the blanks ( 20 Point,2 points for each blank)

  1. The following program calculates values of e according to the formula 1!+3!+5!+……+n! .

#include<iostream>

using namespace std;

void main()

{   long int f,s;

     int i,j,n;

     cin>>n;

     s=0,f=1;

     for(i=1;i<=n;       (1)       )

     {

              f=1;

              for(j=1; j<=i; j++)       (2)       ;

                   (3)       ;

     }

     cout<<"n="<<n<<" s="<<s<<endl;

}

1______i+=2 / i=i+2______________2_____f*=j / f=f*j__________

2.The main function get a string, then call other function to change the numbers 0~9 to lower case letter a~j;And change all the lower case letters to up case letters, then output the result in function main.

#include<iostream>

using namespace std;

_____(4)_____

void main()

{   char str1[20], str2[20];

   cin>>str1;

 change(str1,str2);

 cout<<str2<<endl;

}

void change(char *s1, char *s2)

{   while(_____(5)_____)

 {     if(*s1>='0'&&*s1<='9')

                  *s2=_____(6)_____;

          else *s2=toupper(*s1);

          _____(7)_____

 }

 *s2='\0';

}

#include<iostream>

#include<cctype>

using namespace std;

void change(char *s1, char *s2);

int main()

{

    char str1[20], str2[20];

    cin >> str1;

    change(str1, str2);

    cout << str2 << endl;

    return 0;

}

void change(char *s1, char *s2)

{

    while (*s1)

    {

        if (*s1 >= '0' && *s1 <= '9')

            *s2 = *s1 - '0' + 'a';

        else

            *s2 = toupper(*s1);

        s1++;

        s2++;

    }

    *s2 = '\0';

}

3.    Output matrix as the Figure right of the code:

main()

{ int a[7][7];

 int i,j;

 for (i=0;i<7;i++)

   for (j=0;j<7;j++)

     { if (_____(8)___________) a[i][j]=1;

       else if (i<j&&i+j<6) _____(9)___________;

       else if (i>j&&i+j<6) a[i][j]=3;

       else if (____(10)____ ___) a[i][j]=4;

       else a[i][j]=5;

      }

   for (i=0;i<7;i++)

     {         for (j=0;j<7;j++)   cout<<setw(3)<<a[i][j];

                 cout<<endl;

     }

}

9____a[i][j]=2__________10 ____i<j &&i+j>6__________________

世间温柔,不过是芳春柳摇染花香,槐序蝉鸣入深巷,白茂叶落醉故乡。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/227413.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

分数约分-第11届蓝桥杯选拔赛Python真题精选

[导读]&#xff1a;超平老师的Scratch蓝桥杯真题解读系列在推出之后&#xff0c;受到了广大老师和家长的好评&#xff0c;非常感谢各位的认可和厚爱。作为回馈&#xff0c;超平老师计划推出《Python蓝桥杯真题解析100讲》&#xff0c;这是解读系列的第20讲。 分数约分&#xf…

Google Gemini Pro:AI模型的新里程碑,开放API访问;Octo: 一个开源通用的机器人策略

&#x1f989; AI新闻 &#x1f680; Google Gemini Pro&#xff1a;AI模型的新里程碑&#xff0c;开放API访问 摘要&#xff1a;Google宣布推出了名为Gemini的AI模型&#xff0c;旨在使AI更加有用。Gemini分为Ultra、Pro和Nano三个版本&#xff0c;并已开始在产品中使用。Ge…

TCP/IP详解——HTTPS 协议

文章目录 1. HTTPS 协议1.1 HTTPS 原理1.2 HTTPS 过程1.3 从数据包角度看 HTTPS 交互过程1.4 常见的 HTTPS 数据包解码1.4.1 ClientHello 数据包1.4.2 ServerHello 数据包 1.5 思考 1. HTTPS 协议 1.1 HTTPS 原理 HTTPS概念 HTTPS 是以安全为目标的HTTP通道&#xff0c;并不…

Node.js 工作线程与子进程:应该使用哪一个

Node.js 工作线程与子进程&#xff1a;应该使用哪一个 并行处理在计算密集型应用程序中起着至关重要的作用。例如&#xff0c;考虑一个确定给定数字是否为素数的应用程序。如果我们熟悉素数&#xff0c;我们就会知道必须从 1 遍历到该数的平方根才能确定它是否是素数&#xff…

RabbitMq基本使用

目录 SpringAMQP1.准备Demo工程2.快速入门1.1.消息发送1.2.消息接收1.3.测试 3.WorkQueues模型3.1.消息发送3.2.消息接收3.3.测试3.4.能者多劳3.5.总结 SpringAMQP 将来我们开发业务功能的时候&#xff0c;肯定不会在控制台收发消息&#xff0c;而是应该基于编程的方式。由于R…

Ubuntu安装蓝牙模块pybluez以及问题解决方案【完美解决】

文章目录 简介问题及解决办法总结 简介 近期因工程需要在Ubuntu中使用蓝牙远程一些设备。安装Bluetooth的Python第三方软件包pybluez时遇到很多问题&#xff0c;一番折腾后完美解决。此篇博客进行了梳理和总结&#xff0c;供大家参考。 问题及解决办法 pip install pybluez安…

【算法Hot100系列】最长回文子串

&#x1f49d;&#x1f49d;&#x1f49d;欢迎来到我的博客&#xff0c;很高兴能够在这里和您见面&#xff01;希望您在这里可以感受到一份轻松愉快的氛围&#xff0c;不仅可以获得有趣的内容和知识&#xff0c;也可以畅所欲言、分享您的想法和见解。 推荐:kwan 的首页,持续学…

NNDL 循环神经网络-梯度爆炸实验 [HBU]

目录 6.2.1 梯度打印函数 6.2.2 复现梯度爆炸现象 6.2.3 使用梯度截断解决梯度爆炸问题 【思考题】梯度截断解决梯度爆炸问题的原理是什么&#xff1f; 总结 前言&#xff1a; 造成简单循环网络较难建模长程依赖问题的原因有两个&#xff1a;梯度爆炸和梯度消失。 循环…

【MySQL】(DDL) 表操作-查询

查询&#xff1a; show tables ; //查询所有表名称 desc 表名称 ; //查询表结构 show create table 表名称; //查看创建表语句 create table 表名 ( 字段名1 字段类型1,字段名2 字段类型2) ; //创建表结构 示列&#xff1a; 1. show tables; use 数据库名; show tables …

Llama 架构分析

从代码角度进行Llama 架构分析 Llama 架构分析前言Llama 架构分析分词网络主干DecoderLayerAttentionMLP 下游任务因果推理文本分类 Llama 架构分析 前言 Meta 开发并公开发布了 Llama系列大型语言模型 (LLM)&#xff0c;这是一组经过预训练和微调的生成文本模型&#xff0c;参…

二蛋赠书八期:《Java物联网、人工智能和区块链编程实战》

前言 大家好&#xff01;我是二蛋&#xff0c;一个热爱技术、乐于分享的工程师。在过去的几年里&#xff0c;我一直通过各种渠道与大家分享技术知识和经验。我深知&#xff0c;每一位技术人员都对自己的技能提升和职业发展有着热切的期待。因此&#xff0c;我非常感激大家一直…

【改进YOLOv8】电动车电梯入户检测系统:融合HGNetv2改进改进YOLOv8

1.研究背景与意义 项目参考AAAI Association for the Advancement of Artificial Intelligence 研究背景与意义&#xff1a; 随着电动车的普及和人们对环境保护的重视&#xff0c;电动车的使用量逐渐增加。然而&#xff0c;电动车的充电问题一直是一个挑战&#xff0c;特别是…

贝蒂详解<string.h>哦~(用法与实现)

目录 引言&#xff1a; &#xff08;一&#xff09;字符函数和字符串函数 1.简介 2.strlen()函数 2.1用法 2.2实例 2.3 实现strlen() &#xff08;1&#xff09;计数法 &#xff08;2&#xff09;递归法 &#xff08;3&#xff09; 指针-指针 2.4sizeof和strlen()的区别 3.s…

PhpStorm下载、安装、配置教程

前面的文章中&#xff0c;都是把.php文件放在WampServer的www目录下&#xff0c;通过浏览器访问运行。这篇文章就简单介绍一下PhpStorm这个php集成开发工具的使用。 目录 下载PhpStorm 安装PhpStorm 配置PhpStorm 修改个性化设置 修改字符编码 配置php的安装路径 使用Ph…

网络基础3

NAT&#xff08;Network Address Translation&#xff09;&#xff1a;网络地址转换 通过将内部网络的私有IP地址装换成全球唯一的公网IP地址&#xff0c;使内部网络可以连接到互联网。 广域网就是外网&#xff0c;局域网就是内网 私有IP地址&#xff1a;&#xff08;如果是纯内…

Flask基本用法:一个HelloWorld,搭建服务、发起请求

目录 1、简介 2、安装 3、Flask使用示例 参考 1、简介 官网文档 Flask是一个轻量的web服务框架&#xff0c;我们可以利用它快速搭建一个服务&#xff0c;对外提供接口&#xff0c;其他人可以轻松调用我们的服务。这对算法工程师来说比较关键&#xff0c;我们通常不擅长搞开发…

极坐标下的牛拉法潮流计算14节点MATLAB程序

微❤关注“电气仔推送”获得资料&#xff08;专享优惠&#xff09; 潮流计算&#xff1a; 潮流计算是根据给定的电网结构、参数和发电机、负荷等元件的运行条件&#xff0c;确定电力系统各部分稳态运行状态参数的计算。通常给定的运行条件有系统中各电源和负荷点的功率、枢纽…

JRT实现原生Webservice发布

之前准备试试Java发布Webservice&#xff0c;开始以为很简单&#xff0c;因为C#发布很简单。后面发现太费劲了&#xff0c;依赖一堆包&#xff0c;下面几种都试了一下&#xff1a; JAX-WS (Java API for XML Web Services)&#xff1a;这是Java EE平台的标准&#xff0c;用于创…

nodejs微信小程序+python+PHP的微博网络舆情分析系统-计算机毕业设计推荐

&#xff08;4&#xff09;微博信息交流&#xff1a;在首页导航栏上我们会看到“微博信息交流”这一菜单&#xff0c;我们点击进入进去以后&#xff0c;会看到所有管理员在后台发布的交流信息&#xff1b; &#xff08;5&#xff09;新闻资讯&#xff1a;用户可以查看新闻资讯信…

【STM32入门】4.2对射红外传感器计次

1.接线方式 主要是编写传感器的驱动、配合OLED&#xff0c;每遮挡对射红外传感器&#xff0c;OLED屏幕的计数就加一。 2.驱动编写 首先新建.c文件和.h文件&#xff0c;命名为CountSensor 国际惯例&#xff0c;.c文件内要包含stm32.h头文件&#xff0c;然后编写 CountSensor_…