編程中調試的作用

所謂編程中的調試,大致就如下面所展示的: #include<stdio.h> #include<math.h> //調試,debug,bug //1、將運行光標定位到Max函數內部 //2、查看a,b變量的值 //printf("%d\n",Max(10,20)); int Max(int a,int b) { if(a >  b) { return a; } else { return b; }
相關文章
相關標籤/搜索