[编程入门]结构体之成绩记录 (C语言代码)水经验!! 摘要:解题思路:随便你!!注意事项:无!参考代码:#include<stdio.h>struct stu{ char num[10]; char name[20]; int a; int b; int c;…… 题解列表 2019年05月12日 0 点赞 0 评论 480 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (Java代码) 摘要:解题思路:注意事项:java无需函数。啦啦!参考代码:import java.util.Scanner;public class Main{ public static void main(Stri…… 题解列表 2018年04月11日 0 点赞 0 评论 670 浏览 评分:2.0
: [编程入门]结构体之成绩记录c程序 摘要:#include<stdio.h>struct dey{ int year; int month; int day; }runnian;int main(){// struct demo run…… 题解列表 2024年07月26日 0 点赞 0 评论 106 浏览 评分:2.0
[编程入门]结构体之成绩记录-题解(Java代码) 摘要:参考代码:import java.util.Scanner; public class Main { public static String[] input(){ Sc…… 题解列表 2020年12月12日 0 点赞 0 评论 267 浏览 评分:2.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct a{ int score1,score2,score3; char name[10]; char number[10];}…… 题解列表 2019年01月05日 2 点赞 0 评论 523 浏览 评分:3.0
[编程入门]结构体之成绩记录 (C语言代码)不用函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char xue[100],name[100]; int x1,x2,x3,i,n; s…… 题解列表 2019年04月14日 0 点赞 1 评论 381 浏览 评分:3.6
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:# 代码就是要简洁易读 - #### 代码块```c #include struct student //声明结构体…… 题解列表 2019年09月05日 0 点赞 0 评论 853 浏览 评分:4.0
[编程入门]超精简28行代码解决(容易理解) 摘要:解题思路:使用结构指针存放信息注意事项:参考代码:struct stu { char xh[10]; char xm[10]; int xf[3]; }; char …… 题解列表 2023年08月19日 0 点赞 0 评论 82 浏览 评分:4.0
不用函数的,非常容易理解的,前面的题做过1/3的就能看懂 摘要:解题思路:注意事项:参考代码:a=int(input())for i in range(a): i=input().split() for l in range(len(i)): …… 题解列表 2022年05月26日 0 点赞 0 评论 208 浏览 评分:5.0
无结构体代码——题解1050:C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>char A[100][5][100];int input(int n);int print(int n);int input(int…… 题解列表 2018年08月14日 0 点赞 0 评论 672 浏览 评分:6.0