c - 将结构数组传递给函数

标签 c arrays function structure

这是我第一次发帖,因为我对这个编程作业非常困惑。本章我们开始学习结构体。过去两周我们学习了数组和函数,所以作业试图将它们联系在一起。我想做的是将这个结构数组作为引用传递给函数,而不是按元素传递。我的思考过程是,这些函数中的大多数不返回任何内容,因此我希望在其中更新我的数组。我的问题是,我不断收到“getInput 参数 1 的类型不兼容”错误。

据我所知,我的语法是正确的。我概述了主函数之外的结构,定义了一个 emp 变量,指定从常量派生的数组等。我的函数应该没问题。该程序在我上次的作业中使用了单独的数组,这一次我删除了数组并替换了一个结构。我完全迷失了吗?我只是想克服第一个错误,如果有人能指出我正确的方向?

#include <stdio.h>

//Structures
struct employee {

    long int id_number;
    float wage;
    float hours;
    float overtime;
    float gross;

};

//Constants
#define NUM_EMPL 5
#define OVERTIME_RATE 1.5f
#define WORK_WEEK 40.0f

//Prototypes
void getInput (struct employee input, int size);
float overtime (struct employee input);
void gross_pay (struct employee input, float work, float ot_rate, int size);
void output (struct employee input, int size);

int main ()  {

    struct employee emp[NUM_EMPL] = {

                                {98401, 10.60},
                                {526488, 9.75},
                                {765349, 10.50},
                                {34645, 12.25},
                                {127615, 8.35}
    };


    int count;

    getInput (emp, NUM_EMPL);

    for (count = 0; count < NUM_EMPL; count++)  {
        //if overtime rate applies, function 'overtime' is called
        if (emp.hours[count] > WORK_WEEK)  {
            //function overtime takes specific elements of array and two constants as arguments
            emp.overtime[count] = overtime(emp, WORK_WEEK);
        }
        //if above does not apply, ot hours are set to 0
        else  {
            emp.overtime[count] = 0.0;
        }
    }
    //function called to calculate gross for each employee
    gross_pay (emp, WORK_WEEK, OVERTIME_RATE, NUM_EMPL);

    //function called to display output with proper header and formatting
    output(emp, NUM_EMPL);

    return (0);


}



//**************************************************************/
// Function: getInput
//
// Purpose: Obtains input from user, the number of hours worked
// per employee and stores the results in an array that is
// passed back to the calling program by reference.
//
// Parameters: emp_num - Array of employee clock numbers.
// hrs - Array of number of hours worked by an employee
// size - Number of employees to process */
//
// Returns: Nothing (call by refernce)
//
//**************************************************************/

void getInput (struct employee input, int size)    //(long emp_num[], float emp_hrs[], int size)
{

    int count; /* loop counter */

    /* Get Hours for each employee */
    for (count = 0; count < size; ++count)
    {
        printf("\nEnter hours worked by emp # %06li: ", input.id_number[count]);
        scanf ("%f", &input.hours[count]);
    }

    printf("\n\n");
}

//**************************************************************/
// Function: overtime
//
// Purpose: Figures out amount of overtime hours worked by
//subtracting 'work' from emp hrs.
//
// Parameters: emp_hrs - Array of hours worked by employees
// work - standard hours of work before OT

// Returns: float ot_hours
//
//**************************************************************/


float overtime (struct employee input, int size)                        //(float emp_hrs, float work)
{
    return (input.hours - work);
}

//**************************************************************/
// Function: gross_pay
//
// Purpose: Function that determines gross pay of each employee by multiplying ot rate by wage rate by hours worked
//and adding this amount to work times wage rate.
//
// Parameters: emp_hrs - Array of hours worked by employee
// wage_rate - Array of hourly wages for employees
// ot_hours - overtime hours if worked
// work - standard hours of work before OT
// ot_rate - time and a half constant
// size - amount of employees to be tested
//
// Returns: float gross to array of gross
//
//**************************************************************/
void gross_pay (struct employee input, float work, float ot_rate, int size)              //(float emp_hrs[], float gross[], float wage_rate[], float ot_hours[], float work, float        ot_rate, int size)
{
    int count; //loop counter


    for (count = 0; count < size; count++)  {
        input.gross[count] = (ot_rate * input.wage[count] * input.overtime[count]) + ((input.hours[count] - input.overtime[count]) * input.wage[count]);

    }
}

//**************************************************************/
// Function: output
//
// Purpose: Displays output of calculations in a neat,
// table.  Incorporates suppressed 0's and proper line allignment.
//
// Parameters: clock_number - array of each employee
// wage_rate - hourly wages for employees
// hours - hours worked by employees
// ot - overtime hours worked by employees
// gross - gross amount made by each employee
//
// Returns: Nothing: Displays printf within function
//
//**************************************************************/

void output (struct employee input, int size)   //(long clock_number[], float wage_rate[], float hours[], float ot[], float gross[], int size)
{

    int counter;

    printf("\n\n####################################################################\n");
    printf("##RESULTS##RESULTS##RESULTS##RESULTS##RESULTS##RESULTS##RESULTS#####\n");
    printf("####################################################################\n\n");

    printf("-------------------------------------------------------\n");
    printf("        Clock Number    Wage    Hours   OT      Gross\n");
    printf("-------------------------------------------------------\n");

    //employee data is displayed in a proper format
    for (counter = 0; counter < size; counter++)  {

        printf("    %06li       %-4.2f  %-4.2f  %-2.2f  %-5.2f\n", input.id_number[counter], input.wage[counter], input.hours[counter], input.overtime[counter], input.gross[counter]);
    }
}

最佳答案

在声明和定义中执行此操作

void getInput (struct employee input[], int size);
float overtime (struct employee input[],int size);
void gross_pay (struct employee input[], float work, float ot_rate, int size);
void output (struct employee input[], int size);

您的函数 overtime() 的声明和定义不同。它们包含不同的参数。您还应该修复它。

关于c - 将结构数组传递给函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24475658/

相关文章:

arrays - 为什么取消引用 char** 值(指针到指针到字符)与取消引用 char*[](指针到字符数组)不同?

C - 使用 char 和 int 创建数据包

c - 我们为什么以及如何重定向调试语句?

c - 将 stdout 提供给子进程,该子进程将执行 execv() 排序

c++ - 创建一个节点指针数组

c - 数组中最小的两个整数和

c++ - 从 C++ 中的 int ** 数组访问元素

c - 我正在尝试使用 C 解决给定总线数量的最大平台数量问题。我遇到错误并卡在那里

javascript函数计算两个日期的差异,返回短格式,四舍五入到单个单位

java - 如何在Java中找到分数的下限和余数?