-->
当前位置:首页 > 题库

PROGRAMMING:Student information input and output

Luz5年前 (2021-05-10)题库415
Input the information of several students (student number, name, grade). When the input student number is 0, it ends. Organize the information of these students with one-way linked list, and then output it in order.
###Input example:
```in
1 zhang 78
2 wang 80
3 li 75
4 zhao 85
0
```
###Output example:
```out
1 zhang 78
2 wang 80
3 li 75
4 zhao 85
```






answer:If there is no answer, please comment