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

2023-12-17 12:52

本文主要是介绍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__________________

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

这篇关于C++试卷(华南理工大学)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/504432

相关文章

C++中实现调试日志输出

《C++中实现调试日志输出》在C++编程中,调试日志对于定位问题和优化代码至关重要,本文将介绍几种常用的调试日志输出方法,并教你如何在日志中添加时间戳,希望对大家有所帮助... 目录1. 使用 #ifdef _DEBUG 宏2. 加入时间戳:精确到毫秒3.Windows 和 MFC 中的调试日志方法MFC

深入理解C++ 空类大小

《深入理解C++空类大小》本文主要介绍了C++空类大小,规定空类大小为1字节,主要是为了保证对象的唯一性和可区分性,满足数组元素地址连续的要求,下面就来了解一下... 目录1. 保证对象的唯一性和可区分性2. 满足数组元素地址连续的要求3. 与C++的对象模型和内存管理机制相适配查看类对象内存在C++中,规

在 VSCode 中配置 C++ 开发环境的详细教程

《在VSCode中配置C++开发环境的详细教程》本文详细介绍了如何在VisualStudioCode(VSCode)中配置C++开发环境,包括安装必要的工具、配置编译器、设置调试环境等步骤,通... 目录如何在 VSCode 中配置 C++ 开发环境:详细教程1. 什么是 VSCode?2. 安装 VSCo

C++11的函数包装器std::function使用示例

《C++11的函数包装器std::function使用示例》C++11引入的std::function是最常用的函数包装器,它可以存储任何可调用对象并提供统一的调用接口,以下是关于函数包装器的详细讲解... 目录一、std::function 的基本用法1. 基本语法二、如何使用 std::function

【C++ Primer Plus习题】13.4

大家好,这里是国中之林! ❥前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到网站。有兴趣的可以点点进去看看← 问题: 解答: main.cpp #include <iostream>#include "port.h"int main() {Port p1;Port p2("Abc", "Bcc", 30);std::cout <<

C++包装器

包装器 在 C++ 中,“包装器”通常指的是一种设计模式或编程技巧,用于封装其他代码或对象,使其更易于使用、管理或扩展。包装器的概念在编程中非常普遍,可以用于函数、类、库等多个方面。下面是几个常见的 “包装器” 类型: 1. 函数包装器 函数包装器用于封装一个或多个函数,使其接口更统一或更便于调用。例如,std::function 是一个通用的函数包装器,它可以存储任意可调用对象(函数、函数

C++11第三弹:lambda表达式 | 新的类功能 | 模板的可变参数

🌈个人主页: 南桥几晴秋 🌈C++专栏: 南桥谈C++ 🌈C语言专栏: C语言学习系列 🌈Linux学习专栏: 南桥谈Linux 🌈数据结构学习专栏: 数据结构杂谈 🌈数据库学习专栏: 南桥谈MySQL 🌈Qt学习专栏: 南桥谈Qt 🌈菜鸡代码练习: 练习随想记录 🌈git学习: 南桥谈Git 🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈�

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

06 C++Lambda表达式

lambda表达式的定义 没有显式模版形参的lambda表达式 [捕获] 前属性 (形参列表) 说明符 异常 后属性 尾随类型 约束 {函数体} 有显式模版形参的lambda表达式 [捕获] <模版形参> 模版约束 前属性 (形参列表) 说明符 异常 后属性 尾随类型 约束 {函数体} 含义 捕获:包含零个或者多个捕获符的逗号分隔列表 模板形参:用于泛型lambda提供个模板形参的名

6.1.数据结构-c/c++堆详解下篇(堆排序,TopK问题)

上篇:6.1.数据结构-c/c++模拟实现堆上篇(向下,上调整算法,建堆,增删数据)-CSDN博客 本章重点 1.使用堆来完成堆排序 2.使用堆解决TopK问题 目录 一.堆排序 1.1 思路 1.2 代码 1.3 简单测试 二.TopK问题 2.1 思路(求最小): 2.2 C语言代码(手写堆) 2.3 C++代码(使用优先级队列 priority_queue)