海狗哥哥吖 发表于 2020-4-25 11:33:23

求助吖

想问一下为什么调试的时候为什么b直接定值为41了,怎么换也换不了。
#include <stdio.h>
int main()
{
void swap(int *p1,int *p2);
int a,b;
int *pointer_1,*pointer_2;
printf("please input a and b:");
scanf("%d,%d\n",&a,&b);
pointer_1=&a;
pointer_2=&b;
if (a<b)
{
        swap(pointer_1,pointer_2);
}
printf("max=%d,min=%d\n",*pointer_1,*pointer_2);
return 0;
}   
void swap(int *p1,int *p2)
{
   int temp;
   temp=*p1;   
   *p1=*p2;
   *p2=temp;
}

liuzhengyuan 发表于 2020-4-25 11:48:56

scanf 输入的问题吧
1 中间不能加逗号
2 最后不能加 ‘\n’
scanf("%d%d",&a,&b);

15533617457 发表于 2020-4-25 11:57:08

#include <stdio.h>
void swap(int *p1,int *p2);
int main()
{
int a,b;
int *pointer_1,*pointer_2;
printf("please input a and b:");
scanf("%d %d",&a,&b);
pointer_1=&a;
pointer_2=&b;
if (a<b)
{
          swap(pointer_1,pointer_2);
}
printf("max=%d,min=%d\n",*pointer_1,*pointer_2);
return 0;
}   
void swap(int *p1,int *p2)
{
   int temp;
   temp=*p1;   
   *p1=*p2;
   *p2=temp;
}

scanf有问题这样写就没问题了

sunrise085 发表于 2020-4-25 13:02:23

scanf输入的时候,格式化字符之间最好什么都不要有。
你的两个%的之间有个逗号,最后还有个'\n',
那么你输入的时候就必须要输入逗号,最后还要输入两个回车(一个是scanf中的回车,一个是scanf结束用的回车)
所以一般scanf内不要有任何其他字符,除了%才以外其他的格式化变量都是以空白符(空格、tab、回车)为分隔符。比如你的程序中两个%d,在输入的时候两个整数之间以空白符分开,scanf就能准确的将两个整数分别赋值给对应变量。

SugarCane88 发表于 2020-4-25 17:04:44

sunrise085 发表于 2020-4-25 13:02
scanf输入的时候,格式化字符之间最好什么都不要有。
你的两个%的之间有个逗号,最后还有个'\n',
那么你 ...

细节决定一切,赞。
页: [1]
查看完整版本: 求助吖