C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:#include<stdio.h> #include<string.h> int main(){ int N; char input[100]; scanf("%d"…… 题解列表 2018年10月06日 1 点赞 0 评论 766 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h" typedef struct { char id[20]; char name[20]; int score1; …… 题解列表 2018年11月09日 0 点赞 0 评论 488 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;class student{ public: void input(); void pri…… 题解列表 2018年11月13日 0 点赞 0 评论 467 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:解题思路:利用结构体数组注意事项:a[i].XX 输入字符数组无& 输入整形数组有& 输入多条数据 要多个变量(grade1 grade2 grade3 ) 数组只是…… 题解列表 2018年11月30日 0 点赞 0 评论 709 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C++代码)偷偷混入其中 摘要:解题思路: 偷偷混入其中参考代码:#include<bits/stdc++.h> using namespace std; const int maxn=105; struct stude…… 题解列表 2018年12月04日 0 点赞 0 评论 580 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C++代码) 摘要:解题思路:用c++感觉很简单,因为有cin cout。注意事项:参考代码:#include<iostream>using namespace std;struct GROUP{ char num[1…… 题解列表 2019年01月08日 0 点赞 0 评论 970 浏览 评分:0.0
最简单~题解1050:C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:参考代码:#include <stdio.h> //#include <string.h> typedef struct student { int a,b,c; char …… 题解列表 2019年01月22日 0 点赞 0 评论 599 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:#include<stdio.h>struct jiegouti{ char a[100]; char b[100]; int c[3];};void input(struct jiegouti *p…… 题解列表 2019年02月12日 0 点赞 0 评论 606 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码)单向链表 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#define length sizeof(struct STUDENT)struct STUDEN…… 题解列表 2019年02月24日 0 点赞 0 评论 430 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct Student{ char num[20]; char name[20];…… 题解列表 2019年04月11日 0 点赞 0 评论 395 浏览 评分:0.0