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;
.........
程序无错
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语言大佬们,急! 为啥我多次调用函数,然而输出的时候只有第一层函数输出了,后几层的都没有输
单片机编程怎么使用C语言实现每隔一段时间执行一个函数???给我程序!!!急……急……