C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:#include<stdio.h> char id[100][100]; char name[100][100]; int a[100][3]; void input(int i) { …… 题解列表 2017年07月24日 0 点赞 1 评论 462 浏览 评分:8.0
C语言程序设计教程(第三版)课后习题11.3 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static String[] input(){ …… 题解列表 2017年07月09日 5 点赞 2 评论 1329 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C++代码) 摘要:#include <iostream>using namespace std;struct student{ string number; string name; float score[3];};…… 题解列表 2017年06月28日 2 点赞 0 评论 1608 浏览 评分:8.8
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:#include<stdio.h> struct student{ char num[50]; char name[50]; int s1; int s2; int s3…… 题解列表 2017年06月13日 3 点赞 2 评论 1033 浏览 评分:0.0