tzu220342232


私信TA

用户名:dotcpp0644624

访问量:169

签 名:

等  级
排  名 1324
经  验 2975
参赛次数 2
文章发表 9
年  龄 0
在职情况 学生
学  校 泰州学院
专  业

  自我简介:

#include <bits/stdc++.h>
#define debuga(v, i) cout << #v << "[" << i << "]" << " = " << v[i] << '\n';
#define debug(x) cout << #x << " = " << x << '\n';
#define PI 3.1415926
using namespace std;

const int N = 1010;

typedef struct node {
    int real;
    int imaginary;
    struct node *next;
}Node;

Node *creatnode(Node *head, int real, int imaginary) {
    Node *p = (Node *)malloc(sizeof(Node));
    p -> real = real;
    p -> imaginary = imaginary;
    p -> next = NULL;

    if (!p) {
        cout << "申请内存失败" << '\n';
        exit(0);
    }  
    if (!head) {
        head = p;
    } else {
        p -> next = head;
        head = p;
    }
    return head;
}

void solve() {
    int real, imaginary;
    int sum1 = 0, sum2 = 0;
    char sym;
    Node *head = NULL; //这里要初始化,不然就RunError
    for (int i = 0; i < 10; i ++ ) {
        cin >> real >> imaginary;
        head = creatnode(head, real, imaginary);
    }
    Node *p = head;
    while (p) {
        sum1 += p -> real;
        sum2 += p -> imaginary;
        p = p -> next;
    }
    if (sum2 < 0) sym = '-';
    else sym = '+';
    cout << sum1 << sym << sum2 << 'i'; 
}

int main() {    
    ios::sync_with_stdio(false);
    cin.tie(0);

    int T = 1;
    // cin >> T;
    while (T --) {
        solve();
    }

    return 0;
}
 

0.0分

0 人评分

  评论区

  • «
  • »