C语言程序设计教程(第三版)课后习题11.3 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static String[] input(){ …… 题解列表 2017年07月09日 5 点赞 2 评论 1261 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录 新手向 有问必回 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;struct student { string number…… 题解列表 2023年01月14日 0 点赞 0 评论 51 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 摘要:import java.io.*; /** * 注意不能前面用 cin.nextToken() 后面用 in.readline(),用 in.readline() 必须从头用到尾,否则会阻塞…… 题解列表 2021年12月11日 0 点赞 0 评论 190 浏览 评分:0.0
结构体之成绩记录 摘要:#include<stdio.h>#include<stdlib.h>#include<string.h>struct infor{char num[100];char name[100];int m…… 题解列表 2022年01月17日 0 点赞 0 评论 100 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:解题思路: 利用结构体数组解题就好了参考代码:#include<stdio.h> struct tagSTUDENT { char no[20]; char name[20];…… 题解列表 2020年07月31日 0 点赞 0 评论 228 浏览 评分:0.0
c代码记录之结构体成绩记录--函数传参 摘要: #include struct Student{ char xuehao[30],name[30]; int a,b,c; }; …… 题解列表 2023年12月29日 0 点赞 0 评论 96 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:解题思路:一步一步来注意事项:比较菜,不喜勿喷参考代码:#include<math.h>#include<string.h>#include<stdlib.h> #include <stdio.h>s…… 题解列表 2020年09月04日 0 点赞 0 评论 388 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C++代码) 摘要:#include #include using namespace std; class stu { public: void inputs(); void print(); pr…… 题解列表 2019年12月27日 0 点赞 0 评论 298 浏览 评分: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 评论 375 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C语言代码)(注释清晰) 摘要:###一.解题思路 本题创建了一个student[]数组存放多组数据。input()实现输入一个学生的数据,print()也是实现输出一个学生的数据。 ###二.注意事项 要先思考好inpu…… 题解列表 2021年01月22日 0 点赞 0 评论 327 浏览 评分:0.0