小黄人的博客

导航

 

2017年3月21日

摘要: 1 /*用链表实现学生成绩信息的管理*/ 2 #include "stdio.h" 3 #include "stdlib.h" 4 #include "string.h" 5 struct stud_node 6 { 7 int num; 8 char name[20]; 9 int score; 10 struct stud... 阅读全文
posted @ 2017-03-21 16:42 小黄人的博客 阅读(84) 评论(0) 推荐(0) 编辑
 
摘要: 1 import java.util.Arrays; 2 public class A 3 { 4 public static void main(String args[]) 5 { 6 int i,j; 7 8 int a[][]=new int[10][10]; //创建二维数组a 9 ... 阅读全文
posted @ 2017-03-21 16:32 小黄人的博客 阅读(282) 评论(0) 推荐(0) 编辑