以下是我在编写程序时遇到的问题,我提示用户输入尽可能多的值,然后打印出这样输入的每个整数的结果。
我被建议在我的上一个问题https://stackoverflow.com/users/319824/gcc中使用How to test my program against an input test case file进行动态记忆分配。
我的代码如下:
#include <stdio.h>
#include <stdlib.h>
struct node
{
int data;
struct node *next;
}*start;
void insertatend(int d)
{
struct node *n;
n=(struct node *)malloc(sizeof(struct node));
n->data=d;
n->next=NULL;
if(start==NULL)
{
start=n;
}
else
{
struct node *tmp;
for(tmp=start;tmp->next!=NULL;tmp=tmp->next);
tmp->next=n;
}
}
int max(int a,int b)
{
int c=(a>b)?a:b;
return c;
}
int maxCoins(int n)
{
int arr[n+1],i;
arr[0]=0;
arr[1]=1;
arr[2]=2;
arr[3]=3;
if(n>2)
{
for(i=3;i<=n;i++)
{
int k= arr[(int)(i/2)]+arr[(int)(i/3)]+arr[(int)(i/4)];
arr[i]=max(i,k);
}
}
return arr[n];
}
int main(void)
{
int coins,i;
start=NULL;
struct node*p;
while(scanf("%d",&coins))
{
insertatend(coins);
}
for(p=start;p!=NULL;p=p->next)
{
printf("%d\n",p->data);
}
getchar();
return 0;
}
程序成功运行。我能够提供任意数量的输入,如果我尝试通过按CTRL + Z来突破,程序不会响应。我不能为这些问题使用动态内存分配吗?如果是的话,我错在哪里?
答案 0 :(得分:5)
while(scanf("%d",&coins))
如果你将CTRL + Z发送到你的程序,scanf
会返回EOF
,这是一个负数而不是0,所以contition的计算结果为true,你处于无限循环中。测试
while(scanf("%d",&coins) > 0)