學號和分數

user_3763047219 avatar
user_3763047219
c_cpp
01/01/2023 11:24 AM
292 B
18
Indexable
#include<stdio.h>

struct Student {
    int m_id;
    int m_score;
};

int main() {
    struct Student x;
    scanf("%d %d", &x.m_id ,&x.m_score);
        printf("(ID: %d, score: %d)", x.m_id, x.m_score);
}
Editor is loading...