• 函数:数组作为函数参数进行操作


    编写一个程序,要求用户输入最多10个高尔夫成绩, 并将其存储在一个数组中。程序允许用户提早结束输入,并在一行上显示所有成绩,然后报告平均成绩。请使用三个函数分别处理数组进行输入,显示,计算平均成绩;

    #include <iostream>
    
    double * input_data(const size_t data_size);
    void show_data(const double data[], const size_t data_size);
    double avg_data(const double data[], const size_t data_size);
    
    int main(void)
    {
    	double *pd, avg_;
    	
    	pd=input_data(10);
    	show_data(pd, 10);
    	avg_=avg_data(pd, 10);
    	std::cout << "show the avg: " << avg_ << std::endl;
    	
    	delete []pd;
    	return 0;
    }
    double * input_data(const size_t data_size)
    {
    	using std::cin;
    	using std::cout;
    	using std::endl;
    	
    	double *data=new double[data_size];
    	int i=0;
    	
    	cout << "input the data and show the data(q to quit):" << endl;
    	
    	while(i < 10 and cin >> data[i]) i++;
    	
    	return data;
    }
    void show_data(const double data[], const size_t data_size)
    {
    	using std::cin;
    	using std::cout;
    	using std::endl;
    	
    	for(int i=0; i<data_size; i++)
    		cout << "data["<< i+1 << "]:" << data[i] << endl;
    }
    double avg_data(const double data[], const size_t data_size)
    {
    	double k=0;
    	for(int i=0; i<data_size; i++)
    		k+=data[i];
    	return k/data_size;
    }

  • 相关阅读:
    硬件——STM32 , SN74HC573锁存器
    【模拟】【杂题】jzoj 6345. 【NOIP2019模拟2019.9.8】ZYB建围墙
    归并排序求逆序对
    归并排序求逆序对
    hdu 4135
    hdu 4135
    牛客小白月赛5 A-无关(relationship)
    牛客小白月赛5 A-无关(relationship)
    HDU4027:Can you answer these queries?
    HDU4027:Can you answer these queries?
  • 原文地址:https://www.cnblogs.com/WALLACE-S-BOOK/p/9732354.html
Copyright © 2020-2023  润新知