C语言编程:请问为啥我的自定义函数全部无法执行,急急

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言编程:请问为啥我的自定义函数全部无法执行,急急相关的知识,希望对你有一定的参考价值。

#include<stdio.h>
#include<string.h>
#include <math.h>
#define NUM_std 3
#define NUM_course 3
void average1(float score[][NUM_course]);
void average2(float score[][NUM_course]);
void max(float score[][NUM_course]);
void fangcha();
void main()

int i,j;
float score[NUM_std][NUM_course]=0;
for(i=0;i<NUM_std;i++)
for(j=0;j<NUM_course;j++)

printf("input the mark of %dth courseof %dth student:",i,j);
scanf("%f",&score[i][j]);

void average1(float score[NUM_std][NUM_course]);
void average2(float score[NUM_std][NUM_course]);
void max(float score[NUM_std][NUM_course]);
void fangcha(float score[][NUM_course]);


void average1(float score[][NUM_course])

int j,i;
float total,average;
for(i=0;i<NUM_std;i++);


for(j=0;j<NUM_course;j++);

total+=score[i][j];
average=total/NUM_std;
printf("the %th student's average score is:",i,average);

total=0;average=0;


void average2(float score[][NUM_course])

int i,j;
float total,average;
for(j=0;j<NUM_course;j++);

for(i=0;i<NUM_std;i++);

total+=score[i][j];
average=total/NUM_course;
printf("the %dth course's average score is:",j,average);

total=0;average=0;



.........
程序无错

main函数中下面这一段
void average1(float score[NUM_std][NUM_course]);
void average2(float score[NUM_std][NUM_course]);
void max(float score[NUM_std][NUM_course]);
void fangcha(float score[][NUM_course]);
调用函数时,应该将参数实例化
average1(score);
average2(score);
max(score);
fangcha(score);
其实将自定义函数参数里的float去掉就行。
参考技术A 函数声明。。错了,,,
void average1(float score[][NUM_course]);

、、、你把所有的函数放前面,,,主函数放后面就好了追问

没用啊还是输入之后就没反应

追答

你写的代码,,,实在,,,坑爹,,,基础也太,,,多看看到书吧。。
传入数组地址就好了,,,没必要怎样写

本回答被提问者和网友采纳

以上是关于C语言编程:请问为啥我的自定义函数全部无法执行,急急的主要内容,如果未能解决你的问题,请参考以下文章

c语言请问while循环为啥执行不了?

MFC没有main函数也可以执行吗?急

求助c语言大佬们,急! 为啥我多次调用函数,然而输出的时候只有第一层函数输出了,后几层的都没有输

单片机编程怎么使用C语言实现每隔一段时间执行一个函数???给我程序!!!急……急……

我写了一个SQL自定义函数,执行不成功,急!! 具体如下: GO CREATE FUNCTIO

为啥我的自定义表格单元格中的标签在单击行之前无法显示