沐沐Mnn 2019-04-28 11:58 采纳率: 72.7%
浏览 413
已采纳

C++编程填空问题:反转

描述

补充代码,使得程序输出为

50 4 34 21 10

7.1 8.1 9.1 10.1 11.1 4.1

#include<iostream>
using namespace std;
template<class T>
// 在此处补充你的代码
int main()
{
    int a[5] = { 10, 21, 34, 4, 50 };
    double d[6] = { 4.1, 11.1, 10.1, 9.1, 8.1, 7.1 };
    f(a, 5);
    f(d, 6);
    for (int i = 0; i < 5; i++)
    {
        cout << a[i] << " ";
    }
    cout << endl;
    for (int j = 0; j < 6; j++)
    {
        cout << d[j] << " ";
    }
    cout << endl;
    return 0;
}

样例输入

样例输出

50 4 34 21 10
7.1 8.1 9.1 10.1 11.1 4.1

http://cxsjsx.openjudge.cn/2018midexamcloze/5/

  • 写回答

1条回答 默认 最新

  • threenewbee 2019-04-28 12:54
    关注
    // Q759045.cpp : Defines the entry point for the console application.
    //
    
    #include "stdafx.h"
    
    
    #include<iostream>
    using namespace std;
    template<class T>
    // 在此处补充你的代码
    void f(T arr[], int n)
    {
        for (int i = 0; i < n / 2; i++)
        {
            T t = arr[i];
            arr[i] = arr[n - 1 - i];
            arr[n - 1 - i] = t;
        }
    }
    int main()
    {
        int a[5] = { 10, 21, 34, 4, 50 };
        double d[6] = { 4.1, 11.1, 10.1, 9.1, 8.1, 7.1 };
        f(a, 5);
        f(d, 6);
        for (int i = 0; i < 5; i++)
        {
            cout << a[i] << " ";
        }
        cout << endl;
        for (int j = 0; j < 6; j++)
        {
            cout << d[j] << " ";
        }
        cout << endl;
        return 0;
    }
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 c语言写的8051单片机存储器mt29的模块程序
  • ¥60 求直线方程 使平面上n个点在直线同侧并且距离总和最小
  • ¥50 java算法,给定试题的难度数量(简单,普通,困难),和试题类型数量(单选,多选,判断),以及题库中各种类型的题有多少道,求能否随机抽题。
  • ¥50 rk3588板端推理
  • ¥250 opencv怎么去掉 数字0中间的斜杠。
  • ¥15 这种情况的伯德图和奈奎斯特曲线怎么分析?
  • ¥250 paddleocr带斜线的0很容易识别成9
  • ¥15 电子档案元素采集(tiff及PDF扫描图片)
  • ¥15 flink-sql-connector-rabbitmq使用
  • ¥15 zynq7015,PCIE读写延时偏大