黑马程序员技术交流社区

标题: 入学面试题分享一下吧 [打印本页]

作者: 菊花爆满山    时间: 2016-3-25 13:14
标题: 入学面试题分享一下吧
我面了2次  第一次没学jdbc  没过  第2次估计悬   但是还是希望这些面试题可以帮到其他人
作者: 菊花爆满山    时间: 2016-3-25 13:15
第一题:编写程序,生成5个1至10之间的随机整数,存入一个List集合,
* 编写方法对List集合进行排序(自定义排序算法,禁用Collections.sort方法和TreeSet),
* 然后遍历集合输出。
第二题:定义一个标准的JavaBean,名叫Person,包含属性name、age。使用反射的方式创建一个实例、
* 调用构造函数初始化name、age,使用反射方式调用setName方法对名称进行设置,
* 不使用setAge方法直接使用反射方式对age赋值。
第三题:现有一sdudent表,有ID,age,name,sex这些列,请使用jdbc方式链接数据库,
* 并查询所有姓张的学生,
第四题:map中有如下数据(电话号=套餐价格)
【13265477888=168,15241698745=11,13699989898=20,18986866666=120】
在IP为127.0.0.1数据库名为stdb,连接数据库的用户名和密码为admin 和 123456中有一个numinfo表 相关字段为(id,iphonenum,tcmoney)(15分)
①        将map中的手机号取出来打印在控制台上。(3分)
②        判断map中所有的手机号在numinfo表中是否存在如果存在则输出“该机主已登记” 如果查询不到则将该号码以及对应的套餐价格存入到numinfo表中
(map中的数据不需要修改)(12分)
第五题:将"hello world"首字母转换成大写其余还是小写字母
作者: 菊花爆满山    时间: 2016-3-25 13:17
第一题:
  1. package com.heima.text;

  2. import java.util.ArrayList;
  3. import java.util.Random;

  4. /*
  5. * 编写程序,生成5个1至10之间的随机整数,存入一个List集合,
  6. * 编写方法对List集合进行排序(自定义排序算法,禁用Collections.sort方法和TreeSet),
  7. * 然后遍历集合输出。

  8. * */
  9. public class Demo1 {

  10.         public static void main(String[] args) {
  11.                 //定义集合存储元素
  12.                 ArrayList<Integer> al = new ArrayList<Integer>();
  13.                 Random r = new Random();   
  14.                 for(int x = 0; x < 5; x++) {
  15.                         int num = r.nextInt(10) + 1;   //通过Random对象中的方法获取 1 - 10之间的任意数
  16.                         al.add(num);
  17.                 }
  18.                 sortArrayList(al);
  19.                 //sortArrayList2(al);
  20.                 print(al);     //打印集合中的元素
  21.         }
  22.         //遍历集合
  23.         public static void print(ArrayList<Integer> al) {
  24.                 for(Integer i : al) {
  25.                         System.out.println(i);
  26.                 }
  27.         }
  28.         //冒泡排序
  29.         public static void sortArrayList(ArrayList<Integer> al) {
  30.                 for(int x = 0; x < al.size() - 1; x++) {
  31.                         for(int y = 0; y < al.size() - x - 1; y++) {
  32.                                 if(al.get(y) > al.get(y + 1)) {
  33.                                         swap(al, y, y + 1);
  34.                                 }
  35.                         }
  36.                 }
  37.         }
  38.         //插入排序
  39.         public static void sortArrayList2(ArrayList<Integer> al){
  40.                 for(int x = 0; x < al.size() - 1; x++) {
  41.                         for(int y = x + 1; y < al.size(); y++) {
  42.                                 if(al.get(x) > al.get(y)) {
  43.                                         swap(al, x, y);
  44.                                 }
  45.                         }
  46.                 }
  47.         }
  48.         //交换元素的值
  49.         public static void swap(ArrayList<Integer> al, int x, int y) {
  50.                 int temp = al.get(x);
  51.                 al.set(x, al.get(y));
  52.                 al.set(y, temp);
  53.         }

  54. }
复制代码

作者: 菊花爆满山    时间: 2016-3-25 13:21
第二题:
  1. package com.heima.text;

  2. import java.lang.reflect.Constructor;
  3. import java.lang.reflect.Field;
  4. import java.lang.reflect.InvocationTargetException;
  5. import java.lang.reflect.Method;

  6. /*
  7. * 定义一个标准的JavaBean,名叫Person,包含属性name、age。使用反射的方式创建一个实例、
  8. * 调用构造函数初始化name、age,使用反射方式调用setName方法对名称进行设置,
  9. * 不使用setAge方法直接使用反射方式对age赋值。

  10. * */
  11. public class Demo2 {

  12.         public static void main(String[] args) throws NoSuchMethodException, SecurityException, InstantiationException, IllegalAccessException, IllegalArgumentException, InvocationTargetException, NoSuchFieldException {
  13.                 Class<Person> c = Person.class;
  14.                 //使用反射的方式创建一个实例、
  15.                 Constructor<Person> con  = c.getDeclaredConstructor(String.class, int.class);
  16.                 Person p = con.newInstance("LiHua", 25);
  17.                 System.out.println(p);
  18.                
  19.                 //使用反射方式调用setName方法对名称进行设置
  20.                 Method m = c.getDeclaredMethod("setName", String.class);
  21.                 m.invoke(p, "ZhangShan");
  22.                 System.out.println(p);
  23.                
  24.                 //不使用setAge方法直接使用反射方式对age赋值
  25.                 Field f = c.getDeclaredField("age");
  26.                 f.setAccessible(true);
  27.                 f.set(p, 20);
  28.                 System.out.println(f.get(p));
  29.         }

  30. }
  31. class Person {
  32.         private String name;
  33.         private int age;
  34.         Person(String name, int age) {
  35.                 this.name = name;
  36.                 this.age = age;
  37.         }
  38.         public String getName() {
  39.                 return name;
  40.         }
  41.         public void setName(String name) {
  42.                 this.name = name;
  43.         }
  44.         public int getAge() {
  45.                 return age;
  46.         }
  47.         public void setAge(int age) {
  48.                 this.age = age;
  49.         }
  50.         public String toString() {
  51.                 return name + ":" + age;
  52.         }
  53. }
复制代码

作者: 菊花爆满山    时间: 2016-3-25 13:22
第3题:
  1. package com.heima.text;

  2. import java.sql.Connection;
  3. import java.sql.PreparedStatement;
  4. import java.sql.ResultSet;
  5. import java.util.Scanner;

  6. import org.junit.Test;

  7. /*
  8. * 现有一sdudent表,有ID,age,name,sex这些列,请使用jdbc方式链接数据库,
  9. * 并查询所有姓张的学生,
  10. * */
  11. public class Demo3 {
  12.         //向student表中插入数据
  13.         @Test
  14.         public void fun1() throws Exception {
  15.                 Connection con = null;
  16.                 PreparedStatement pre = null;
  17.                 Scanner sc = null;
  18.                 try {
  19.                         con = JdbcUtils.getConnection();
  20.                         String sql = "insert into tb values(?, ?)";
  21.                         pre = con.prepareStatement(sql);
  22.                         sc = new Scanner(System.in);
  23.                         for(int x = 0; x < 10; x++) {
  24.                                 String line = sc.nextLine();
  25.                                 String[] strArr = line.split(",");
  26.                                 pre.setInt(1, Integer.parseInt(strArr[0]));
  27.                                 pre.setString(2, strArr[1]);
  28.                                 pre.addBatch(); //添加批   这一组数据就保存到集合中了
  29.                         }
  30.                         pre.executeBatch(); //执行批
  31.                 }finally {
  32.                         sc.close();
  33.                         if(pre != null) pre.close();
  34.                         if(con != null) con.close();
  35.                 }
  36.         }
  37.         //遍历整个student表
  38.         @Test
  39.         public void fun2() throws Exception {
  40.                 Connection con = null;
  41.                 PreparedStatement pre = null;
  42.                 ResultSet rs = null;
  43.                 try {
  44.                         con = JdbcUtils.getConnection();
  45.                         String sql = "select * from stu";
  46.                         pre = con.prepareStatement(sql);
  47.                        
  48.                         rs = pre.executeQuery();
  49.                         int count = rs.getMetaData().getColumnCount();
  50.                         while(rs.next()) {
  51.                                 for(int x = 1; x <= count; x++) {
  52.                                         System.out.print(rs.getString(x));
  53.                                         if(x < count) {
  54.                                                 System.out.print(", ");
  55.                                         }
  56.                                 }
  57.                                 System.out.println();
  58.                         }
  59.                 }finally {
  60.                         if(rs != null) rs.close();
  61.                         if(pre != null) pre.close();
  62.                         if(con != null) con.close();
  63.                 }
  64.         }
  65.         //遍历出性张的学生
  66.         @Test
  67.         public void fun3() throws Exception {
  68.                 Connection con = null;
  69.                 PreparedStatement pre = null;
  70.                 ResultSet rs = null;
  71.                 try {
  72.                         con = JdbcUtils.getConnection();
  73.                         String sql = "select * from stu where name like ?";
  74.                         pre = con.prepareStatement(sql);
  75.                         pre.setString(1, "张%");
  76.                        
  77.                         rs = pre.executeQuery();
  78.                         int count = rs.getMetaData().getColumnCount();
  79.                         while(rs.next()) {
  80.                                 for(int x = 1; x <= count; x++) {
  81.                                         System.out.print(rs.getString(x));
  82.                                         if(x < count) {
  83.                                                 System.out.print(", ");
  84.                                         }
  85.                                 }
  86.                                 System.out.println();
  87.                         }
  88.                 }finally {
  89.                         if(rs != null) rs.close();
  90.                         if(pre != null) pre.close();
  91.                         if(con != null) con.close();
  92.                 }
  93.         }
  94. }
复制代码

作者: 菊花爆满山    时间: 2016-3-25 13:24
第四题:
  1. package com.heima.text;

  2. import java.sql.Connection;
  3. import java.sql.PreparedStatement;
  4. import java.sql.ResultSet;
  5. import java.util.ArrayList;
  6. import java.util.HashMap;
  7. import java.util.Iterator;
  8. import java.util.Map;
  9. import java.util.Scanner;
  10. import java.util.Set;

  11. import org.junit.Test;

  12. /*
  13. *
  14. * map中有如下数据(电话号=套餐价格)
  15. 【13265477888=168,15241698745=11,13699989898=20,18986866666=120】
  16. 在IP为127.0.0.1数据库名为stdb,连接数据库的用户名和密码为admin 和 123456中有一个numinfo表 相关字段为(id,iphonenum,tcmoney)(15分)
  17. ①        将map中的手机号取出来打印在控制台上。(3分)
  18. ②        判断map中所有的手机号在numinfo表中是否存在如果存在则输出“该机主已登记” 如果查询不到则将该号码以及对应的套餐价格存入到numinfo表中
  19. (map中的数据不需要修改)(12分)

  20. * */
  21. public class Demo4 {
  22.        
  23.         @Test
  24.         //首先遍历集合 获取集合中每一个健值 看是否包含在表中
  25.         public void  fun1() throws Exception{
  26.                 Map<String, Integer> m = new HashMap<>();
  27.                 ArrayList<String> al = new ArrayList<>();
  28.                
  29.                 m.put("13265477888", 168);
  30.                 m.put("15241698745", 11);
  31.                 m.put("18986866666", 120);
  32.                 Set<String> keySet = m.keySet();
  33.                 Iterator<String> it = keySet.iterator();
  34.                 String[] strArr = new String[m.size()];
  35.                 int num = 0;
  36.                 while(it.hasNext()) {
  37.                         strArr[num++] = it.next();
  38.                 }
  39.                
  40.                 Connection con = null;
  41.                 PreparedStatement pre = null;
  42.                 PreparedStatement pre2 = null;
  43.                 ResultSet rs = null;
  44.                 try {
  45.                         con = JdbcUtils.getConnection();
  46.                         String sql = "select * from numinfo";
  47.                         String sql2 = "insert into numinfo(iphonenum, tcmoney) values(?, ?)";
  48.                         pre = con.prepareStatement(sql);
  49.                         pre2 = con.prepareStatement(sql2);
  50.                        
  51.                         rs = pre.executeQuery();
  52.                         while(rs.next()) {
  53.                                 al.add(rs.getString("iphonenum"));
  54.                         }
  55.                        
  56.                        
  57.                         for(int x = 0; x < strArr.length; x++) {
  58.                                
  59.                                 if(!al.contains(strArr[x])) {
  60.                                         pre2.setString(1, strArr[x]);
  61.                                         pre2.setInt(2, m.get(strArr[x]));
  62.                                         pre2.executeUpdate();
  63.                                 }else {
  64.                                         System.out.println(strArr[x] +"该机主已登记");
  65.                                 }
  66.                         }
  67.                 }finally {
  68.                         if(rs != null) pre.close();
  69.                         if(pre != null) pre.close();
  70.                         if(pre2 != null) pre.close();
  71.                         if(con != null) con.close();
  72.                 }
  73.         }
  74.         @Test
  75.         //向numinfo表中存储已有的数据 键盘录入的方式
  76.         public void fun2() throws Exception{
  77.                 Connection con = null;
  78.                 PreparedStatement pre = null;
  79.                 Scanner sc = new Scanner(System.in);
  80.                 try {
  81.                         con = JdbcUtils.getConnection();
  82.                         String sql = "insert into numinfo values(?, ?, ?)";
  83.                         pre = con.prepareStatement(sql);
  84.                         for(int x = 0; x < 5; x++) {
  85.                                 String line = sc.nextLine();
  86.                                 String[] strArr = line.split(",");
  87.                                 pre.setString(1, strArr[0]);
  88.                                 pre.setString(2, strArr[1]);
  89.                                 pre.setInt(3, Integer.parseInt(strArr[2]));
  90.                                 pre.addBatch();
  91.                         }
  92.                         pre.executeBatch();
  93.                        
  94.                 }finally {
  95.                         sc.close();
  96.                         if(pre != null) pre.close();
  97.                         if(con != null) con.close();
  98.                        
  99.                 }
  100.         }
  101.         @Test
  102.         //①        将map中的手机号取出来打印在控制台上。
  103.         public void fun3() {
  104.                 Map<String, Integer> m = new HashMap<>();
  105.                 m.put("13265477888", 168);
  106.                 m.put("15241698745", 11);
  107.                 m.put("18986866666", 120);
  108.                 Set<String> keySet = m.keySet();
  109.                 Iterator<String> it = keySet.iterator();
  110.                 while(it.hasNext()) {
  111.                         System.out.println(it.next());
  112.                 }
  113.         }

  114. }
复制代码

作者: 劲爆对策    时间: 2016-3-25 13:25
楼主面试什么专业呢?是就业班还是基础班?
作者: 菊花爆满山    时间: 2016-3-25 13:25
第5题:
  1. package com.heima.text;
  2. /*
  3. * 将"hello world"首字母转换成大写其余还是小写字母
  4. * */
  5. public class Demo5 {

  6.         public static void main(String[] args) {
  7.                 // TODO Auto-generated method stub
  8.                 String str = "hello world";
  9.                 StringBuilder sb = new StringBuilder(str);
  10.                 for(int x = 0; x < sb.length(); x++) {
  11.                         String s = sb.charAt(x) + "";
  12.                         if(x == 0) {
  13.                                 sb.deleteCharAt(0);
  14.                                 s = s.toUpperCase();
  15.                                 sb.insert(0, s);
  16.                                 break;
  17.                         }
  18.                 }
  19.                 str = sb.toString();
  20.                 System.out.println(str);
  21.         }

  22. }
复制代码

作者: lgdbest    时间: 2016-3-25 13:35
面试是视频 还是去了面试的  
作者: 菊花爆满山    时间: 2016-3-25 13:36
lgdbest 发表于 2016-3-25 13:35
面试是视频 还是去了面试的

我视频面试的
作者: lgdbest    时间: 2016-3-25 13:38
菊花爆满山 发表于 2016-3-25 13:36
我视频面试的

然后 面试是在本机上敲代码,不能查API 是不是
作者: 菊花爆满山    时间: 2016-3-25 13:42
劲爆对策 发表于 2016-3-25 13:25
楼主面试什么专业呢?是就业班还是基础班?

我面试的是进javaEE就业班
作者: 菊花爆满山    时间: 2016-3-25 13:43
lgdbest 发表于 2016-3-25 13:38
然后 面试是在本机上敲代码,不能查API 是不是

对 不能查API和笔记
作者: 劲爆对策    时间: 2016-3-25 13:45
菊花爆满山 发表于 2016-3-25 13:42
我面试的是进javaEE就业班

楼主基础是自学还是培训班,我自学java基础,报了安卓就业班,考试题得了27分,还剩最后一个面试步骤了,你考试题有没有满分呢?感觉3分会把我卡掉
作者: 劲爆对策    时间: 2016-3-25 13:47
这是插入排序的算法:
  1. /**
  2. * 插入排序需要双倍内存,因为他会创建一个返回列表,并添加元素列表的所有元素。 原理:
  3. *
  4. * 注意:(1)条件语句的else在if是返回的情况下可以不写else{}块来包括
  5. * (2)带标签的循环,标签开头字母小写(3)插入排序的返回列表使用链表实现LinkedList因为他适合在中间和头部插入大量元素。
  6. */
  7. public class 插入排序 {

  8.         public static void main(String[] args) {
  9.                 // 创建一个String类型的列表
  10.                 List<String> toSort = new ArrayList<>();
  11.                 toSort.add("w");
  12.                 toSort.add("s");
  13.                 toSort.add("f");
  14.                 toSort.add("y");
  15.                 toSort.add("v");

  16.                 // 测试insertSort方法
  17.                 List<String> sortedList = insertSort(toSort);
  18.                 // 迭代并打印到控制台
  19.                 sortedList.forEach(element -> System.out.println(element));
  20.         }

  21.         public static <E extends Comparable<E>> List<E> insertSort(List<E> values) {
  22.                 // 优化
  23.                 if (values.size() < 2)
  24.                         return values;
  25.                 // 用于返回的列表
  26.                 List<E> sorted = new LinkedList<>();
  27.                 // 定义一个带标签的对原始列表的迭代
  28.                 originalList: for (E orig : values) {
  29.                         // 对排序列表的迭代
  30.                         for (int i = 0; i < sorted.size(); i++) {
  31.                                 // 如果原始列表元素小于等于排序列表元素,那么把原始列表元素插入到该元素前面
  32.                                 if (orig.compareTo(sorted.get(i)) <= 0) {
  33.                                         sorted.add(i, orig);
  34.                                         // 插入后直接进行下一个原始元素的循环
  35.                                         continue originalList;
  36.                                 }
  37.                                 // 如果不小于等于,那么进入下一个排序列表元素
  38.                         }
  39.                         // 如果在排序列表元素迭代完仍然没有添加,则加入到排序列表末尾
  40.                         sorted.add(sorted.size(), orig);
  41.                 }

  42.                 return sorted;

  43.         }
  44. }
复制代码

作者: 劲爆对策    时间: 2016-3-25 13:49
菊花爆满山 发表于 2016-3-25 13:25
第5题:

你第二题的JavaBean一般是提供一个默认的无参构造方法
作者: 菊花爆满山    时间: 2016-3-25 14:09
劲爆对策 发表于 2016-3-25 13:45
楼主基础是自学还是培训班,我自学java基础,报了安卓就业班,考试题得了27分,还剩最后一个面试步骤了, ...

入学测试题我是满分  没大碍我觉得  主要是面试
作者: lgdbest    时间: 2016-3-25 14:17
菊花爆满山 发表于 2016-3-25 13:43
对 不能查API和笔记

ok  了解了。谢谢啊
作者: flynihao53    时间: 2016-3-25 14:20
多谢了,学习啦
作者: flynihao53    时间: 2016-3-25 14:21
多谢了。。。
作者: 604840337    时间: 2016-3-25 15:22
谢谢   谢谢分享
··
作者: Lee♥晓蕾    时间: 2016-3-25 16:05
感谢分享~是面试就业班的试题吗`
作者: 菊花爆满山    时间: 2016-3-25 20:42
Lee♥晓蕾 发表于 2016-3-25 16:05
感谢分享~是面试就业班的试题吗`

是的  javaee的
作者: ameanboy    时间: 2016-3-25 21:21
可以用eclipse吗?
作者: 超人d咖啡也加糖    时间: 2016-3-25 22:20
问一下,可以用eclipse和eslipse快捷键吗?
作者: zixiyang    时间: 2016-3-25 22:45
看到数据库就猜到是面试EE的了
作者: LLQALLQ    时间: 2016-3-25 22:57
题目出的的确很难啊。学习了
作者: freshnboy    时间: 2016-3-26 11:58
楼主,面试可以上网查代码吗?
作者: lbh15710083661    时间: 2016-3-26 13:53
多谢  学习了
作者: Banana_uSuOO    时间: 2016-3-26 14:44
感觉好难啊,自学的我感觉鸭梨山大
作者: htyjshty    时间: 2016-3-26 15:40
感谢分享,已码
作者: cohle1992    时间: 2016-3-26 18:04
学习了!谢谢分享!
作者: 菊花爆满山    时间: 2016-3-26 19:18
Lee♥晓蕾 发表于 2016-3-25 16:05
感谢分享~是面试就业班的试题吗`

不用谢 我也是这样过来的  是就业班面试题
作者: 丿若恋灬如初    时间: 2016-3-26 19:24
学习一下
作者: lyoivneg    时间: 2016-3-26 19:42
lgdbest 发表于 2016-3-25 13:35
面试是视频 还是去了面试的

我也想知道 这个   
作者: lyoivneg    时间: 2016-3-26 19:44
lgdbest 发表于 2016-3-25 13:38
然后 面试是在本机上敲代码,不能查API 是不是

是啊   有知道的同志吗 简单说说了
作者: lyoivneg    时间: 2016-3-26 19:45
超人d咖啡也加糖 发表于 2016-3-25 22:20
问一下,可以用eclipse和eslipse快捷键吗?

视频面试  是怎么能的呢  知道的 说说了
作者: ninjaes    时间: 2016-3-26 20:23
楼主 这个面试 是只开视频 然后 你敲完代码 老师怎么看? 是远程操作???
作者: hongshaorou    时间: 2016-3-26 20:53
很厉害      赞一个
作者: 猪冲在前方    时间: 2016-3-26 22:03
               
作者: 菊花爆满山    时间: 2016-3-28 13:59
freshnboy 发表于 2016-3-26 11:58
楼主,面试可以上网查代码吗?

肯定不行啊  就算不要求  我觉得也要自己自觉 毕竟2W的学费来  要本着对自己负责的态度
作者: 菊花爆满山    时间: 2016-3-28 14:01
ameanboy 发表于 2016-3-25 21:21
可以用eclipse吗?

可以用, 但是最好不要用快捷键啦  我平时不怎么用 有时候还手写,去了北京不是还要笔试吗 最好平常不要用
作者: 菊花爆满山    时间: 2016-3-28 14:03
ninjaes 发表于 2016-3-26 20:23
楼主 这个面试 是只开视频 然后 你敲完代码 老师怎么看? 是远程操作??? ...

嗯  远程操作  
作者: zhuzhibo    时间: 2016-3-28 19:31
好贴,收藏。。。。
作者: Summerk    时间: 2016-4-13 16:54
看了面试题,瞬间感觉这期又无望了。。。 好难
作者: lmr1096200234    时间: 2016-4-13 18:03
很棒  只不过是学的安卓  部分题还是能用到的
作者: SilentMax    时间: 2016-4-13 19:18
多谢分享。正在努力学习
作者: gu821361889    时间: 2016-4-13 19:24
亲,视频面试时间不是40分钟到1个小时么,能做出这么多题么,谢谢啦?
作者: naughty    时间: 2016-4-13 19:49
多谢了,我们也可能会考着方面
作者: 轰天雷    时间: 2016-4-13 21:00
谢谢楼主分享
作者: 晴苑    时间: 2016-4-13 21:15
学习了楼主辛苦了
作者: kcufow    时间: 2016-4-14 09:35
本帖最后由 kcufow 于 2016-4-14 09:53 编辑

学习 学习,不用快捷方式感觉好难,好多的包呢
作者: dreamwork    时间: 2016-4-16 00:02
我感觉这题有点难
作者: 青青桐    时间: 2016-4-16 00:24
多谢了,学习啦0
作者: 星空下的初吻    时间: 2016-4-16 00:26
感觉 这几道题都很好啊 支持
作者: NB的笨小孩    时间: 2016-4-16 07:06
谢谢楼主分享
作者: JackBurne    时间: 2016-4-16 21:30
多谢分享,祝学习顺利!
作者: 蜗牛爬啊爬    时间: 2016-4-16 22:03
看不懂啊  感觉好难
作者: 土豆你个马铃薯    时间: 2016-4-16 22:08
我也看不懂,平时敲代码也要好多时间啊 ,这点时间够用吗
作者: 172620843    时间: 2016-4-25 21:18
jdbc必考吗?
作者: lion_good    时间: 2016-4-25 21:44

多谢了,学习啦
作者: 拓跋伊祈    时间: 2016-4-25 21:46
感谢分享~~~祝顺利~
作者: yunmu    时间: 2016-4-25 22:00
学习学习
作者: Master_Yu    时间: 2016-4-25 22:05
感谢分享
作者: 精彩    时间: 2016-4-25 22:10
好好学习一下,谢谢
作者: songwenhao    时间: 2016-4-25 22:45
谢谢分享
作者: 我认识你    时间: 2016-4-25 23:02
顶一个!!!!
作者: johnli    时间: 2016-4-25 23:17
谢谢分享,一起加油!楼主辛苦了
作者: yxpzzl    时间: 2016-4-25 23:20
用eclipse还是notepad?
作者: 为何帅    时间: 2016-4-25 23:32
谢谢楼主,学习了。楼主进就业班了吗?
作者: HuangShunyu    时间: 2017-5-22 13:00
一个数据库stdb,用户名为admin 密码为123456 已存在一个表student中有五个学生的信息,姓名,性别,年龄,分数.
        id(varchar(20))       name(varchar(20))      sex(varchar(20))     score(int(10))
         1                    李少荣                 女                   80
         2                    邵凯                   男                   75
         3                    周强                   男                   95
         4                    王晓婷                 女                   55
         5                    张秀花                 女                   68
         6                    顾会                   女                   50
         7                    赵天一                 男                   32
        (1)查询女性,成绩80以上的学生数量
        (2)将姓张的男同学的的成绩改为100
        (3)查询成绩大于60的女性,显示姓名,性别,成绩
        (4)分别统计所有男同学的平均分,所有女同学的平均分及总平均分
        (5)按照分数从小到大的顺序打印分数大于总平均分的学员信息(id-name-sex-score),并将分数大于总平均分的学员信息(按照分数从小到大的顺序)(id-name-sex-score)写入到studentInfo.txt文件中(写入格式:id-name-sex-score)
        (6)定义查询所有学生的方法public List<Student> getAllStudent(){}
        (7)定义根据id查询学生的方法public Student getStudentById(String id){}
        (8)定义根据id删除学生的方法public int deleteStudentById(String id){}//注意只有数据库中有才能删除,没有无法删除
        (9)定义添加学员的方法public int addStudent(){}//注意只有数据库中没有有才能添加,有无法添加
        (10)定义根据id修改学员的信息public int updateStudentById(String id){}//注意只有数据库中有才能修改,没有无法修改

作者: 小白--zz    时间: 2017-6-13 14:14
题在哪里?




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2