c++作业2

利用函数重载实现冒泡排序:

cpp 复制代码
#include <iostream>

using namespace std;
void sort(int a[],int len)
{
    int i,j,t;

    for(i=1;i<len;i++)
    {
        for(j=0;j<len-i;j++)
        {
            if(a[j]>a[j+1])
            {
                t=a[j];
                a[j]=a[j+1];
                a[j+1]=t;
            }
        }
    }
    cout<<"整数数组:";
    for(i=0;i<len;i++)
    {
        cout<<a[i]<<"\t";
    }
    cout<<endl;

}
void sort(float a[],int len)
{
    int i,j;
    float t;

    for(i=1;i<len;i++)
    {
        for(j=0;j<len-i;j++)
        {
            if(a[j]>a[j+1])
            {
                t=a[j];
                a[j]=a[j+1];
                a[j+1]=t;
            }
        }
    }
    cout<<"浮点数数组:";
    for(i=0;i<len;i++)
    {
        cout<<a[i]<<"\t";
    }
    cout<<endl;



}
int main()
{
    int a[5]={7,9,1,3,6};
    int len1=sizeof(a)/sizeof(int);
    float b[5]={3.5,4.1,1,6.6,0};
    int len2=sizeof(b)/sizeof(float);
    sort(a,len1);
    sort(b,len2);

    cout << "Hello World!" << endl;
    return 0;
}

在堆区申请一个数组的空间,并完成对该数组中数据的输入和输出,程序结束释放堆区空间

cpp 复制代码
#include <iostream>

using namespace std;

int main()
{
    int *p=new int[5];
    int i;
    for(i=0;i<5;i++)
    {
        cin>>p[i];
    }
    for(i=0;i<5;i++)
    {
        cout<<p[i]<<"\t";
    }
    cout<<endl;
    delete []p;
    cout << "Hello World!" << endl;
    return 0;
}

已知一个数组table,用宏定义,求出数据的元素个数

c 复制代码
#include <myhead.h>
#define ARR_SIZE(arr) sizeof(arr)/sizeof(arr[0])
int main(int argc, const char *argv[])
{
	int table[]={9,7,0,2,1,88};
	int size=ARR_SIZE(table);
	printf("%d\n",size);
	return 0;
}

给定一个整型变量a,写两段代码,第一个设置a的bit3,第二个清除a的bit3

c 复制代码
#include <myhead.h>
int main(int argc, const char *argv[])
{
	int a=0;
	int mask=1<<3;
	a=a|mask;
	printf("a=%d\n",a);

	a=31;
	mask=1<<3;
	mask=~mask;
	a=a&mask;
	printf("a=%d\n",a);
	return 0;
}
相关推荐
ByteBlossom6663 小时前
MDX语言的语法糖
开发语言·后端·golang
肖田变强不变秃4 小时前
C++实现矩阵Matrix类 实现基本运算
开发语言·c++·matlab·矩阵·有限元·ansys
沈霁晨4 小时前
Ruby语言的Web开发
开发语言·后端·golang
小兜全糖(xdqt)4 小时前
python中单例模式
开发语言·python·单例模式
DanceDonkey4 小时前
@RabbitListener处理重试机制完成后的异常捕获
开发语言·后端·ruby
Python数据分析与机器学习4 小时前
python高级加密算法AES对信息进行加密和解密
开发语言·python
军训猫猫头4 小时前
52.this.DataContext = new UserViewModel(); C#例子 WPF例子
开发语言·c#·wpf
ac-er88885 小时前
Yii框架优化Web应用程序性能
开发语言·前端·php
Tester_孙大壮6 小时前
第4章:Python TDD消除重复与降低依赖实践
开发语言·驱动开发·python
数据小小爬虫7 小时前
如何使用Python爬虫获取微店商品详情:代码示例与实践指南
开发语言·爬虫·python