0

以下是我在编写程序时遇到的一个问题,我提示用户输入任意数量的值,然后打印输入的每个整数的结果。

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 来突破,程序不会响应。我不能对这些问题使用动态内存分配吗?如果是的话,我错在哪里?

4

1 回答 1

5
while(scanf("%d",&coins))

如果您将 CTRL+Z 发送到您的程序,则scanf返回EOF,这是一个负数而不是 0,因此 contition 的计算结果为 true 并且您处于无限循环中。测试

while(scanf("%d",&coins) > 0)
于 2012-07-18T09:36:27.960 回答