题解 1051: [编程入门]结构体之成绩统计2

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

简单实现成绩统计

摘要:解题思路:注意事项:注意初始化问题等细节问题。参考代码:#include<iostream>#include<string>using namespace std;struct student    ……

C语言--study||O.o

摘要:参考代码:#include<stdio.h>   struct student {   char number[10];     char name[10];     int s1;   ……

没有比我更直观的了吧

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>struct stu{    char num[100];    char name[100];……

小矛盾的结构体统计之成绩统计2 C语言

摘要:解题思路:    只关注了大概要掌握的            输入与输出的例子告诉 输入是整型,输出也是            输入 第一行次数      &nbs

结构体之成绩统计2

摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#pragma warning(disable:6031)#include<stdio.h>int main……