标题:有代码看不懂
只看楼主
a75692074
Rank: 1
等 级:新手上路
威 望:1
帖 子:48
专家分:0
注 册:2018-7-20
结帖率:100%
已结贴  问题点数:10 回复次数:2 
有代码看不懂
程序代码:
#include <iostream>
#define SIZE 5
using namespace std;

void show_array(const double ar[], int n);
void mult_array(double ar[], int n, double mult);

int main()
{
    double dip[SIZE] = {20.0, 17.66, 8.2, 15.3, 22.22};
    cout << "The original dip array:\n";
    show_array(dip, SIZE);
    mult_array(dip, SIZE, 2.5);
    cout << "The dip array after calling mult_array():\n";
    show_array(dip, SIZE);
    return 0;
}

void show_array(const double ar[], int n)
{
    int i;
    for (i = 0; i < n; i++)
        cout << ar[i];
    cout << endl;
}

void mult_array(double ar[], int n, double mult)
{
    int i;
    for (i = 0; i < n; i++)
        ar[i] *= mult;
}


这两段的结果怎么算呢??
show_array(dip, SIZE);
mult_array(dip, SIZE, 2.5);


为什么输出的结果是
The original dip array:
2017.668.215.322.22
The dip array after calling mult_array():
5044.1520.538.2555.55


谢谢大佬!!!
搜索更多相关主题的帖子: SIZE double int cout The 
2018-08-15 07:39
no1xijin
Rank: 9Rank: 9Rank: 9
来 自:江西
等 级:贵宾
威 望:20
帖 子:211
专家分:1207
注 册:2015-7-8
得分:10 
1.show_array(dip, SIZE);
这段是显示数组dip[]内的元素。将该函数内的 cout << ar[i]; 改为  cout << ar[i] <<" "; 看的更为清楚
2.mult_array(dip, SIZE, 2.5);
这段表示将数组dip[]内各元素乘以2.5不输出;配合使用下列两条语句才输出。
cout << "The dip array after calling mult_array():\n";
show_array(dip, SIZE);

126邮箱联系方式:no1xijin@126. com
2018-08-15 09:32
a75692074
Rank: 1
等 级:新手上路
威 望:1
帖 子:48
专家分:0
注 册:2018-7-20
得分:0 
回复 2楼 no1xijin
嗯,谢谢
2018-08-15 11:58



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-489215-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.048420 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved