私信TA

用户名:2472727869

访问量:18850

签 名:

哈哈哈

等  级
排  名 586
经  验 4273
参赛次数 0
文章发表 16
年  龄 24
在职情况 在职
学  校
专  业

  自我简介:

没上进心的客服

TA的其他文章

#include<stdio.h>

struct Node

{

int shi;

int xu;

struct Node *next;

};

struct Node *createList(int n)

{

struct Node *headNode=(struct Node *)malloc(sizeof(struct Node));

if(headNode==NULL)

printf("error"),exit(0);

headNode->shi=0;

headNode->xu=0;

headNode->next=NULL; 

struct Node *p=headNode;

while(n>0)

{

struct Node *newNode=(struct Node *)malloc(sizeof(struct Node));

if(newNode==NULL)

printf("error"),exit(0);

headNode->next=newNode;

scanf("%d %d",&newNode->shi,&newNode->xu);

newNode->next=NULL;

headNode=headNode->next;

n--;

}

return p;

}

int main()

{

int n,sum1=0,sum2=0;

    struct Node *p;

    scanf("%d",&n);

    p=createList(n);

    while(NULL!=p)

    {

    sum1+=p->shi;

    sum2+=p->xu;

    p=p->next;

    }

    printf("%d+%di",sum1,sum2);

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »