小黄人的博客

导航

 

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 小黄人的博客 阅读(83) 评论(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 小黄人的博客 阅读(278) 评论(0) 推荐(0) 编辑
 

2017年3月20日

摘要: public class A { public static void main(String args[]) { int i,j; for(i=2;ii/2&&i!=1) System.out.printf(i+"\n"); } } }; 阅读全文
posted @ 2017-03-20 21:24 小黄人的博客 阅读(62) 评论(0) 推荐(0) 编辑
 
摘要: public class A { public static void main(String args[]) { int i; for(i=1;i<=9;i++) { for(int j=1;j<=i;j++) { System.out.print(j... 阅读全文
posted @ 2017-03-20 21:09 小黄人的博客 阅读(82) 评论(0) 推荐(0) 编辑