- 论坛徽章:
- 0
|
#include<stdio.h>
#include<string.h>
#include<ctype.h>
double min( double *x, double *y )
{
if(*x>*y)
return *y;
else
return *x;
}
int main(void)
{
double i,j;
printf("please input 2 double num:");
scanf("%f,%f",&i,&j);
printf("\nbetween %.2f and %.2f the min is %.2f\n",i,j,min(&i,&j));
return 0;
}
用gdb调试如下:
(gdb) n
15 scanf("%f,%f",&i,&j);
(gdb) s
please input 2 double num:6,5
16 printf("\nbetween %.2f and %.2f the min is %.2f\n",i,j,min(&i,&j));
(gdb) p i
$1 = 1.5568185538959763e-307
(gdb) p j
$2 = 3.4210311148389101e-307
(gdb)
为什么打印i,j的时候显示的不是6,和5 |
|