解题思路:
注意事项:
参考代码:
#include <stdio.h>
#include <malloc.h>
typedef struct linklist
{
int real,image;
struct linklist *next;
}ComplexList;
ComplexList *CreateList()
{
ComplexList *head,*p,*q;
head=(ComplexList*)malloc(sizeof(ComplexList));
head->next=NULL;
q=head;
int n=10;
while(n--)
{
p=(ComplexList*)malloc(sizeof(ComplexList));
scanf("%d%d",&p->real,&p->image);
q->next=p;
q=p;
}
q->next=NULL;
return head;
}
void CountList(ComplexList *head)
{
int sum1=0,sum2=0;
ComplexList *p=head;
p=p->next;
while(p!=NULL)
{
sum1+=p->real;
sum2+=p->image;
p=p->next;
}
printf("%d+%di\n",sum1,sum2);
}
int main()
{
ComplexList *head=CreateList();
CountList(head);
return 0;
}
0.0分
2 人评分
C二级辅导-进制转换 (C语言代码)浏览:1054 |
点我有惊喜!你懂得!浏览:4114 |
C语言程序设计教程(第三版)课后习题6.11 (C++代码)(有个库函数叫sqrt)浏览:981 |
C语言训练-委派任务* (C语言代码)..................竟然是第一个浏览:2212 |
C语言训练-最大数问题 (C语言代码).........关于-1浏览:762 |
川哥的吩咐 (C语言代码)浏览:926 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:747 |
钟神赛车 (C++代码)浏览:905 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:639 |
C语言考试练习题_一元二次方程 (C语言代码)浏览:606 |