gpt4 book ai didi

c - 我不知道我的程序中有什么错误,循环不会停止,请检查它

转载 作者:行者123 更新时间:2023-11-30 19:31:14 25 4
gpt4 key购买 nike

该程序旨在查找用户输入数字中的最大和最小数字,然后打印最大和最小数字的范围。

#include<stdio.h>
int main ()
{
int n,max,min,i,j,k,l,m;
printf("please enter the number of numbers you wish to evaluate \n");
scanf(" %d",&n);
printf("please enter %d numbers \n",n);
for (i==1;i>=n;i++)
{
scanf("%d",&j);
max=0;
min=0;
if (j>max)
j=max;
else if (j<k)
j=min;
k=min;


}
printf("the max number is %d",&max);
for (l==max;l>=1;l--)
{

printf("&d",l);
printf(" ");
}
printf("the min number is %d",&min);
for (m==min;m>=1;m--)
{
printf("\n &d",m);
printf(" ");
}
return 0;
}

最佳答案

谢谢你,我已经编辑了程序,它运行得很好

#include<stdio.h>
int main ()
{
int n,max,min,i,j,k,l,m;
printf("please enter the number of numbers you wish to evaluate \n");
scanf("%d",&n);
printf("please enter %d numbers \n",n);
max=0;
min=0;
for (i=1;i<=n;i++)
{
scanf("%d",&j);

if (j>max)
max=j;
if (j<k)
min=j;
k=min;


}
printf("the max number is %d \n",max);
for (l=max;l>=1;l--)
{

printf("%d \n",l);
printf(" ");
}
printf("the min number is %d \n",min);
for (m=min;m>=1;m--)
{
printf("\n %d",m);
printf(" ");
}
return 0;
}

关于c - 我不知道我的程序中有什么错误,循环不会停止,请检查它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49185287/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com