年假作业8

一、选择题

CBACDCCBD

二、填空题

0

2.75

3.5

10,20,0

1,B

0

1

0

0

2

三、填空题

1、

#include 
using namespace std;
int main()
{
    char s;//定义一个字符串存储输入的数据
    while(cin >> s)//从终端获取输入的字符串
    {
        // 如果字符是大写字母,则转换为小写字母
        if (s >= 'A' && s <= 'Z')
        {
            str = str - 'A' + 'a';
        }
        // 输出字符
        cout << str;
    }
    return 0;
}

2、异或

#include 
using namespace std;
int main()
{
    int a=10,b=20;
    a=a^b;
    b=a^b;
    a=a^b;
    cout << a << " " << b << endl;
    return 0;
}

你可能感兴趣的:(c++,算法,开发语言)