简单的自定义调试函数【C语言】
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单的自定义调试函数【C语言】相关的知识,希望对你有一定的参考价值。
参考技术A 使用自定义调试函数debug,控制输出不输出调试信息。下面的程序中,如果要不输出调试信息,则注释掉#define DEBUG,否则不注释它。
这个程序,要输出调试信息时,运行结果如下:
i=1 ; f=1
i=2 ; f=2
i=3 ; f=6
i=4 ; f=24
4!=24
其中前面四行都是调试信息。
如果不输出调试信息,运行结果如下:
4!=24
有的人使用__DEBUG__来代替DEBUG,也是一样的。
用__DEBUG__更安全一些(免得其它不小心用了DEBUG),但用DEBUG方便一些。
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语言】的主要内容,如果未能解决你的问题,请参考以下文章