课堂测试

package 测试;
import java.util.Scanner;
class  ScoreInformation  {
 private String stunumber;
 private String name;
 private double mathematicsscore;
 private double englishiscore;
 private double networkscore;
 private double databasescore;
 private double softwarescore;
 public ScoreInformation() {
  super();
 }
 public ScoreInformation(String stunumber,String name,double mathematicsscore,double englishiscore,double  networkscore,double databasescore,double softwarescore ) {
  this.stunumber=stunumber;
  this.name=name;
  this.mathematicsscore=mathematicsscore;
  this.englishiscore=englishiscore;
  this.networkscore=networkscore;
  this.databasescore=databasescore;
  this.softwarescore=softwarescore;
 }
 public String getStunumber() {
  return stunumber;
 }
 public void setStunumber(String stunumber) {
  this.stunumber=stunumber;
 }
 public String getName() {
  return name;
 }
 public void setName(String name) {
  this.name=name;
 }
 public double getMathematicsscore() {
  return mathematicsscore;
 }
 public void setMathematicsscore(double mathematicsscore) {
  this.mathematicsscore=mathematicsscore;
 }
 public double getEnglishiscore() {
  return englishiscore;
 }                                                                        
 public void setEnglishiscore(double englishiscore) {
  this.englishiscore= englishiscore;
 }                                                   
 public double getNetworkscore() {
  return networkscore;
 }
 public void setNetworkscore(double networkscore) {
  this.networkscore=networkscore;
 }
 public double getDatabasescore() {
  return databasescore;
 }
 public void setDatabasescore(double databasescore) {
  this.databasescore=databasescore;
 }
 public double getSoftwarescore() {
  return softwarescore;
 }
 public void setSoftwarescore(double softwarescore) {
  this.softwarescore=softwarescore;
 }
 
}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
public class ScoreManagement {
 static Scanner sc=new Scanner(System.in);
 static ScoreInformation[]a=new ScoreInformation[5];
 static void stu() {
  a[0]=new ScoreInformation("20183788","刘志霄",0,0,0,0,0);
  a[1]=new ScoreInformation("20183789","小米",0,0,0,0,0);
  a[2]=new ScoreInformation("20183790","小红",0,0,0,0,0);
  a[3]=new ScoreInformation("20183791","小黑",0,0,0,0,0);
  a[4]=new ScoreInformation("20183792","小白",0,0,0,0,0);
 }
 public static void main(String[] args) {
  stu();
  zhuye();
  
 }
 static void zhuye(){
   for(;;) {
       System.out.println("***********************************************************");
       System.out.println("              石家庄铁道大学软件工程系 ");
       System.out.println("              学生学籍管理系统 2019 版 ");
       System.out.println("*********************************************************** ");
       System.out.println("              1、 学生考试成绩录入 ");
       System.out.println("              2、 学生考试成绩修改 ");
       System.out.println("              3、 计算学生成绩绩点 ");
       System.out.println("              4、 退出学籍管理系统 ");
       System.out.println("********************************************************** ");
       int m=sc.nextInt();
       switch(m) {
       case 1:
        xuehao();
        luru();
        
         break;
       case 2:
        xiugai();
        gaicuo();
        break;
       case 3:
        jidian();
        jisuan();
        break;
       case 4:
         System.out.println("***********************************************************");
            System.out.println("    谢谢使用石家庄铁道大学软件工程系学生学籍管理系统 2019 版 ");
            System.out.println("                       制作人:刘志霄 ");
            System.out.println("*********************************************************** ");
        break;
       default:
        System.out.println("错误");
        break;
       
       }
      }
 }
 static void xuehao() {
  System.out.println("***********************************************************");
  System.out.println("    石家庄铁道大学软件工程系学生学籍管理系统2019版");
  System.out.println("             学生考试成绩录入");
  System.out.println("***********************************************************");
  System.out.println("             请输入学生学号 ");
  System.out.println("**********************************************************");
 }
 static void luru() {
  int i;
  String n1=sc.next();
  for(i=0;i<5;i++) {
   if(n1.equals(a[i].getStunumber())) {
    System.out.println("***********************************************************");
    System.out.println("     石家庄铁道大学软件工程系学生学籍管理系统 2019 版 ");
    System.out.println("                  学生考试成绩录入界面 ");
    System.out.println("***********************************************************");
    System.out.println("                   学生学号:"+a[i].getStunumber());
    System.out.println("                    学生姓名:"+a[i].getName());
     System.out.println("                 请输入高等数学成绩:");
     a[i].setMathematicsscore(sc.nextDouble());
     System.out.println("***********************************************************");
     System.out.println("                 请输入大学英语成绩:");
     a[i].setEnglishiscore(sc.nextDouble());
     System.out.println("***********************************************************");
     System.out.println("                 请输入计算机成绩:");
     a[i].setNetworkscore(sc.nextDouble());
     System.out.println("***********************************************************");
     System.out.println("                 请输入数据库成绩:");
     a[i].setDatabasescore(sc.nextDouble());
     System.out.println("***********************************************************");
     System.out.println("                 请输入软件工程成绩:");
     a[i].setSoftwarescore(sc.nextDouble());
    System.out.println("***********************************************************");
    System.out.println("        石家庄铁道大学软件工程系学生学籍管理系统 2019 版 ");
    System.out.println("                       学生考试成绩录入 ");
    System.out.println("*********************************************************** ");
    System.out.println("                   学生学号"+a[i].getStunumber());
    System.out.println("                    学生姓名"+a[i].getName());
    System.out.println("                   1,高等数学成绩"+a[i].getMathematicsscore());
    System.out.println("                   2,大学英语成绩"+a[i].getEnglishiscore());
    System.out.println("                  3,计算机网络成绩"+a[i].getNetworkscore());
    System.out.println("                    4 ,数据库成绩"+a[i].getDatabasescore());
    System.out.println("                   5,软件工程成绩"+a[i].getSoftwarescore());
    System.out.println(                    "该学生成绩已录入完毕,是否提交(Y/N)");
    System.out.println("**********************************************************");
   }
   else {
    System.out.println("该学号不存在");
    xuehao();
    luru(); 
    }
    String n2=sc.next();
    if(n2.equals("Y")) {
     zhuye();     
    }
    if(n2.equals("y")) {
     zhuye();     
    }
    if(n2.equals("N")) {
     a[i].setMathematicsscore(0);
     a[i].setEnglishiscore(0);
     a[i].setNetworkscore(0);
     a[i].setDatabasescore(0);
     a[i].setSoftwarescore(0);
     xuehao();
     luru();     
    }
    if(n2.equals("n")) {
     a[i].setMathematicsscore(0);
     a[i].setEnglishiscore(0);
     a[i].setNetworkscore(0);
     a[i].setDatabasescore(0);
     a[i].setSoftwarescore(0);
     xuehao();
     luru();     
    }
 }
 }
  
  
 static void xiugai(){
  System.out.println("***********************************************************");
  System.out.println("    石家庄铁道大学软件工程系学生学籍管理系统2019版");
  System.out.println("             学生考试成绩修改界面");
  System.out.println("***********************************************************");
  System.out.println("             请输入学生学号 ");
  System.out.println("**********************************************************");  
 }
 static void gaicuo() {
  int j;
  String n3=sc.next();
  for(j=0;j<5;j++)
   if(n3.equals(a[j].getStunumber())) {
    System.out.println("***********************************************************");
    System.out.println("        石家庄铁道大学软件工程系学生学籍管理系统 2019 版 ");
    System.out.println("                       学生考试成绩录入 ");
    System.out.println("*********************************************************** ");
    System.out.println("                   学生学号"+a[j].getStunumber());
    System.out.println("                    学生姓名"+a[j].getName());
    System.out.println("                   1,高等数学成绩"+a[j].getMathematicsscore());
    System.out.println("                   2,大学英语成绩"+a[j].getEnglishiscore());
    System.out.println("                  3,计算机网络成绩"+a[j].getNetworkscore());
    System.out.println("                    4 ,数据库成绩"+a[j].getDatabasescore());
    System.out.println("                   5,软件工程成绩"+a[j].getSoftwarescore());
    System.out.println("***********************************************************");
    int k=sc.nextInt();
    switch(k) {
    case 1:
     System.out.println("***********************************************************");
     System.out.println("    石家庄铁道大学软件工程系学生学籍管理系统2019版");
     System.out.println("             学生考试成绩修改界面");
     System.out.println("***********************************************************");
     System.out.println("                   学生学号"+a[j].getStunumber());
     System.out.println("                    学生姓名"+a[j].getName());
     System.out.println("                 请输入修改后的高等数学成绩");
     System.out.println("***********************************************************");
     a[j].setMathematicsscore(sc.nextDouble());
     break;
    case 2:
     System.out.println("***********************************************************");
     System.out.println("    石家庄铁道大学软件工程系学生学籍管理系统2019版");
     System.out.println("             学生考试成绩修改界面");
     System.out.println("***********************************************************");
     System.out.println("                   学生学号"+a[j].getStunumber());
     System.out.println("                    学生姓名"+a[j].getName());
     System.out.println("                 请输入修改后的大学英语成绩");
     System.out.println("***********************************************************");
     a[j].setEnglishiscore(sc.nextDouble());
     break;
    case 3:
     System.out.println("***********************************************************");
     System.out.println("    石家庄铁道大学软件工程系学生学籍管理系统2019版");
     System.out.println("             学生考试成绩修改界面");
     System.out.println("***********************************************************");
     System.out.println("                   学生学号"+a[j].getStunumber());
     System.out.println("                    学生姓名"+a[j].getName());
     System.out.println("                 请输入修改后的计算机网络成绩");
     System.out.println("***********************************************************");
     a[j].setNetworkscore(sc.nextDouble());
     break;
    case 4:
     System.out.println("***********************************************************");
     System.out.println("    石家庄铁道大学软件工程系学生学籍管理系统2019版");
     System.out.println("             学生考试成绩修改界面");
     System.out.println("***********************************************************");
     System.out.println("                   学生学号"+a[j].getStunumber());
     System.out.println("                    学生姓名"+a[j].getName());
     System.out.println("                 请输入修改后的数据库成绩");
     System.out.println("***********************************************************");
     a[j].setDatabasescore(sc.nextDouble());
     break;
    case 5:
     System.out.println("***********************************************************");
     System.out.println("    石家庄铁道大学软件工程系学生学籍管理系统2019版");
     System.out.println("             学生考试成绩修改界面");
     System.out.println("***********************************************************");
     System.out.println("                   学生学号"+a[j].getStunumber());
     System.out.println("                    学生姓名"+a[j].getName());
     System.out.println("                 请输入修改后的软件工程成绩");
     System.out.println("***********************************************************");
     a[j].setSoftwarescore(sc.nextDouble());
     break;
    }
    System.out.println("***********************************************************");
    System.out.println("        石家庄铁道大学软件工程系学生学籍管理系统 2019 版 ");
    System.out.println("                       学生考试成绩录入 ");
    System.out.println("*********************************************************** ");
    System.out.println("                   学生学号"+a[j].getStunumber());
    System.out.println("                    学生姓名"+a[j].getName());
    System.out.println("                   1,高等数学成绩"+a[j].getMathematicsscore());
    System.out.println("                   2,大学英语成绩"+a[j].getEnglishiscore());
    System.out.println("                  3,计算机网络成绩"+a[j].getNetworkscore());
    System.out.println("                    4 ,数据库成绩"+a[j].getDatabasescore());
    System.out.println("                   5,软件工程成绩"+a[j].getSoftwarescore());
    System.out.println(                    "该学生成绩已修改完毕,是否提交(Y/N)");
    System.out.println("*********************************************************** ");
    String n4=sc.next();
    if(n4.equals("Y")) {
     zhuye();     
    }
    if(n4.equals("y")) {
     zhuye();     
    }
    if(n4.equals("N")) {
     a[j].setMathematicsscore(0);
     a[j].setEnglishiscore(0);
     a[j].setNetworkscore(0);
     a[j].setDatabasescore(0);
     a[j].setSoftwarescore(0);
     xiugai();
     gaicuo();
    }
    if(n4.equals("n")) {
     a[j].setMathematicsscore(0);
     a[j].setEnglishiscore(0);
     a[j].setNetworkscore(0);
     a[j].setDatabasescore(0);
     a[j].setSoftwarescore(0);
     xiugai();
     gaicuo();
    }
   } 
   else {
    System.out.println("该学号不存在");
    xiugai();
    gaicuo();
   }
 }
 static void jidian(){
  System.out.println("***********************************************************");
  System.out.println("    石家庄铁道大学软件工程系学生学籍管理系统2019版");
  System.out.println("             学生考试成绩绩点计算界面");
  System.out.println("***********************************************************");
  System.out.println("             请输入学生学号 ");
  System.out.println("**********************************************************");  
 }
 static void jisuan() {
  int l;
  double l1,l2 = 0,l3,l4,l5;
  String n5=sc.next();
  for(l=0;l<5;l++)
   if(n5.equals(a[l].getStunumber())) {
    if(a[l].getMathematicsscore()>=90)
      l1=4.0;
     else if(a[l].getMathematicsscore()>=85&&a[l].getMathematicsscore()<=89.9)
      l1=3.7;
     else if(a[l].getMathematicsscore()>=82&&a[l].getMathematicsscore()<=84.9)
      l1=3.3;
     else if(a[l].getMathematicsscore()>=78&&a[l].getMathematicsscore()<=81.9)
      l1=3.0;
     else if(a[l].getMathematicsscore()>=75&&a[l].getMathematicsscore()<=77.9)
      l1=2.7;
     else if(a[l].getMathematicsscore()>=72&&a[l].getMathematicsscore()<=74.9)
      l1=2.3;
     else if(a[l].getMathematicsscore()>=68&&a[l].getMathematicsscore()<=71.9)
      l1=2.0;
     else if(a[l].getMathematicsscore()>=66&&a[l].getMathematicsscore()<=67.9)
      l1=1.7;
     else if(a[l].getMathematicsscore()>=64&&a[l].getMathematicsscore()<=65.9)
      l1=1.5;
     else if(a[l].getMathematicsscore()>=60&&a[l].getMathematicsscore()<=63.9)
      l1=1.0;
     else
      l1=0;
    
     if(a[l].getEnglishiscore()>=90) {
    } else if(a[l].getEnglishiscore()>=85&&a[l].getEnglishiscore()<=89.9)
      l2=3.7;
     else if(a[l].getEnglishiscore()>=82&&a[l].getEnglishiscore()<=84.9)
      l2=3.3;
     else if(a[l].getEnglishiscore()>=78&&a[l].getEnglishiscore()<=81.9)
      l2=3.0;
     else if(a[l].getEnglishiscore()>=75&&a[l].getEnglishiscore()<=77.9)
      l2=2.7;
     else if(a[l].getEnglishiscore()>=72&&a[l].getEnglishiscore()<=74.9)
      l2=2.3;
     else if(a[l].getEnglishiscore()>=68&&a[l].getEnglishiscore()<=71.9)
      l2=2.0;
     else if(a[l].getEnglishiscore()>=66&&a[l].getEnglishiscore()<=67.9)
      l2=1.7;
     else if(a[l].getEnglishiscore()>=64&&a[l].getEnglishiscore()<=65.9)
      l2=1.5;
     else if(a[l].getEnglishiscore()>=60&&a[l].getEnglishiscore()<=63.9)
      l2=1.0;
     else
      l2=0;
    
     if(a[l].getNetworkscore()>=90)
      l3=4.0;
     else if(a[l].getNetworkscore()>=85&&a[l].getNetworkscore()<=89.9)
      l3=3.7;
     else if(a[l].getNetworkscore()>=82&&a[l].getNetworkscore()<=84.9)
      l3=3.3;
     else if(a[l].getNetworkscore()>=78&&a[l].getNetworkscore()<=81.9)
      l3=3.0;
     else if(a[l].getNetworkscore()>=75&&a[l].getNetworkscore()<=77.9)
      l3=2.7;
     else if(a[l].getNetworkscore()>=72&&a[l].getNetworkscore()<=74.9)
      l3=2.3;
     else if(a[l].getNetworkscore()>=68&&a[l].getNetworkscore()<=71.9)
      l3=2.0;
     else if(a[l].getNetworkscore()>=66&&a[l].getNetworkscore()<=67.9)
      l3=1.7;
     else if(a[l].getNetworkscore()>=64&&a[l].getNetworkscore()<=65.9)
      l3=1.5;
     else if(a[l].getNetworkscore()>=60&&a[l].getNetworkscore()<=63.9)
      l3=1.0;
     else
      l3=0;
    
     if(a[l].getDatabasescore()>=90)
      l4=4.0;
     else if(a[l].getDatabasescore()>=85&&a[l].getDatabasescore()<=89.9)
      l4=3.7;
     else if(a[l].getDatabasescore()>=82&&a[l].getDatabasescore()<=84.9)
      l4=3.3;
     else if(a[l].getDatabasescore()>=78&&a[l].getDatabasescore()<=81.9)
      l4=3.0;
     else if(a[l].getDatabasescore()>=75&&a[l].getDatabasescore()<=77.9)
      l4=2.7;
     else if(a[l].getDatabasescore()>=72&&a[l].getDatabasescore()<=74.9)
      l4=2.3;
     else if(a[l].getDatabasescore()>=68&&a[l].getDatabasescore()<=71.9)
      l4=2.0;
     else if(a[l].getDatabasescore()>=66&&a[l].getDatabasescore()<=67.9)
      l4=1.7;
     else if(a[l].getDatabasescore()>=64&&a[l].getDatabasescore()<=65.9)
      l4=1.5;
     else if(a[l].getDatabasescore()>=60&&a[l].getDatabasescore()<=63.9)
      l4=1.0;
     else
      l4=0;
    
     if(a[l].getNetworkscore()>=90)
      l5=4.0;
     else if(a[l].getNetworkscore()>=85&&a[l].getNetworkscore()<=89.9)
      l5=3.7;
     else if(a[l].getNetworkscore()>=82&&a[l].getNetworkscore()<=84.9)
      l5=3.3;
     else if(a[l].getNetworkscore()>=78&&a[l].getNetworkscore()<=81.9)
      l5=3.0;
     else if(a[l].getNetworkscore()>=75&&a[l].getNetworkscore()<=77.9)
      l5=2.7;
     else if(a[l].getNetworkscore()>=72&&a[l].getNetworkscore()<=74.9)
      l5=2.3;
     else if(a[l].getNetworkscore()>=68&a[l].getNetworkscore()<=71.9)
      l5=2.0;
     else if(a[l].getNetworkscore()>=66&&a[l].getNetworkscore()<=67.9)
      l5=1.7;
     else if(a[l].getNetworkscore()>=64&&a[l].getNetworkscore()<=65.9)
      l5=1.5;
     else if(a[l].getNetworkscore()>=60&&a[l].getNetworkscore()<=63.9)
      l5=1.0;
     else
      l5=0;
     double tt,ttt;
     tt=(l1*4+l2*3+l3*4+l4*3+l5*2)/16;
        ttt=(double)Math.round(tt*100)/100;
     System.out.println("***********************************************");
     System.out.println("            石家庄铁道大学软件工程系学生学籍管理系统2019版");
      System.out.println("                          学生考试成绩录入");
      System.out.println("***********************************************");
      System.out.println("                          学生学号:"+a[l].getStunumber());
      System.out.println("                          学生姓名:"+a[l].getName());
      System.out.println("                          高等数学绩点:"+l1);
      System.out.println("                          大学英语绩点:"+l2);
      System.out.println("                          计算机网络绩点:"+l3);
      System.out.println("                          数据库绩点:"+l4);
      System.out.println("                          软件工程绩点:"+l5);
      System.out.println("                          你的平均绩点绩点:"+ttt);
      if(tt>=2)
      System.out.println("                          你的学分绩点达到毕业水平");
      else
       System.out.println("                      你的学分绩点没有达到毕业水平");
      System.out.println("                          该学生成绩录入完毕,是否提交(Y/N)");
      System.out.println("***********************************************");
      String n6;
      n6=sc.next();
      if(n6.equals("Y")) {
       zhuye();
      }
      if(n6.equals("y")) {
       zhuye();
      }
      if(n6.equals("N")) {
       jidian();
       jisuan();
      }
      if(n6.equals("n")) {
       jidian();
       jisuan();
      }
   }
   
 }  
}

转载于:https://www.cnblogs.com/--lzx1--/p/11515649.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/362891.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Mule ESB,ActiveMQ和DLQ

在本文中&#xff0c;我将展示一个简单的Mule ESB流程&#xff0c;以了解实际中使用的Active MQ 的DLQ功能 。 我假设您有一个正在运行的Apache ActiveMQ实例&#xff08;如果没有&#xff0c;则可以在此处下载一个版本&#xff09;。 在此示例中&#xff0c;我使用了Mule ESB…

JS设计模式(2)策略模式

什么是策略模式&#xff1f; 定义&#xff1a;根据不同参数可以命中不同的策略 主要解决&#xff1a;在有多种算法相似的情况下&#xff0c;使用 if...else 所带来的复杂和难以维护。 何时使用&#xff1a;有许多种情况&#xff0c;而区分它们的只是他们直接的行为。 如何解…

C#中使用多线程访问Winform问题解决方案

我们在做winform应用的时候&#xff0c;大部分情况下都会碰到使用多线程控制界面上控件信息的问题。然而我们并不能用传统方法来做这个问题&#xff0c;下面我将详细的介绍。 首先来看传统方法&#xff1a; public partial class Form1 : Form{public Form1(){InitializeCompon…

Choose and Divide UVa 10375

题目大意&#xff1a;给出p,q,r,s&#xff0c;求组合数C(p,q)/C(r,s) 题目思路&#xff1a; 化简得到&#xff1a;原式等价于(p!(r-s)!s!) / (r!(p-q)!q!) 由算数基本定理可知任意一个正整数可被唯一分解为素数幂乘积的形式&#xff0c;将分子分母分解后&#xff0c;进行约分即…

在Java中避免空检查

对于Java开发人员&#xff08;从初级到专家&#xff09;最糟糕的噩梦之一是空对象引用检查。 我很确定您已经看过几次这样的代码&#xff1a; public void addAddressToCustomer(Customer customer, Address newAddress){if ( cutomer null || newAddress null)return;if ( …

Linux sudo 详解

简单的说&#xff0c;sudo 是一种权限管理机制&#xff0c;管理员可以授权于一些普通用户去执行一些 root 执行的操作&#xff0c;而不需要知道 root 的密码。严谨些说&#xff0c;sudo 允许一个已授权用户以超级用户或者其它用户的角色运行一个命令。当然&#xff0c;能做什么…

echarts自定义图例legend文字和样式

话不多说&#xff0c;先上效果图。 要完成这个图并不难&#xff0c;主要是下面那个图例比较难&#xff0c;需要定制。 让我们从官方文档找找思路&#xff0c;官方文档关于legend.formatter是这样的&#xff1a;链接在这 难点在于&#xff1a; 1.这里的图例文本包含两个变量&am…

DataGridView常见用法和FAQ汇总

前段时间在项目中用到了WinForm&#xff0c;其中最复杂的控件当属DataGridView了&#xff0c;特别喜欢它那高度的可配置性(提供了大量的属性&#xff0c;方法和事件)、丰富的内置列类型&#xff0c;而且易于扩展&#xff0c;对性能问题也提供了良好的解决方案。不过最初看着它那…

信息的Raid存储方式,更安全的保障,更花钱的保障!

raid0 就是把多个&#xff08;最少2个&#xff09;硬盘合并成1个逻辑盘使用&#xff0c;数据读写时对各硬盘同时操作&#xff0c;不同硬盘写入不同数据&#xff0c;速度快。  raid1就是同时对2个硬盘读写&#xff08;同样的数据&#xff09;。强调数据的安全性。比较浪费。 …

Java调试器和超时

在代码中存在超时的情况下如何使用调试器。 我的调试器王国&#xff01; 因此&#xff0c;您一直忙于编写一个项目&#xff0c;一切顺利&#xff0c;直到出现错误为止。 您可以进入开发人员的工具箱&#xff0c;然后拔出调试器。 很棒–您可以设置断点&#xff0c;可以在发生异…

【题解】整理书本

题目描述 小A想把他满屋子的书整理一下。书本分成若干堆。每一堆的书本都有质量w和价值v。小A的任务是将所有书合成一堆。因为小A认为合并i&#xff0c;j两堆的书所需要的力为w[i]-v[i]w[j]-v[j]。合并后的书堆的质量和价值均为合并前两堆书的质量和价值的总和。也就是说&#…

C#正则表达式编程(二):Regex类用法

上一篇讲述了在C#中有关正则表达式的类之间的关系&#xff0c;以及它们的方法&#xff0c;这一篇主要是将Regex这个类的用法的&#xff0c;关于Match及MatchCollection类会在下一篇讲到。对于正则表达式的应用&#xff0c;基本上可以分为验证、提取、分割和替换。仅仅利用Regex…

浏览器记住密码的自动填充Input问题完美解决方案

1、input 前from和input占位隐藏 <form style"width:0;height:0;display:none;"><input type"password" /></form><input type"password" style"width:0;height:0;display:none;" /> 2、input autocomplete&…

Java数字格式

当我看到其他人编写不必要的Java代码并且由于缺乏对已经提供所需功能的JDK类的了解而编写了不必要的Java代码时&#xff0c;我会想到很多次。 这样的一个例子是时间相关的常量的使用硬编码值的写入&#xff0c;如60 &#xff0c; 24 &#xff0c; 1440 &#xff0c;和86400时TI…

数据模型设计

数据&#xff1a;是符号。例如 张三 模型&#xff1a;现实世界事与物特征的抽象与模拟。如飞机模型、空气动力模型。 数据模型&#xff1a;通过对现实世界的事与物主要特征的分析、抽象&#xff0c;为信息系统的实施提供数据存取的数据结构以及相应的约束。 数据模型的要素由操…

优课在线 嵌入式系统(胡威)2018春季测验 参考解析

一、单选题 (共 20.00 分) μCOS-II操作系统属于&#xff08; &#xff09;。 A.一般实时操作系统 B.非嵌入式实时操作系统 C.占先式实时操作系统 D.非占先式实时操作系统 正确答案&#xff1a;C 寄存器R13除了可以做通用寄存器外&#xff0c;还可以做&#xff08; &#xff0…

JBoss Wildfly 8.1上的HawtIO

HawtIO为基于JVM的中间件提供了令人赞叹的视觉效果。 它是应用程序的统一控制台&#xff0c;否则将不得不构建自己的糟糕的Web控制台。 老实说&#xff0c;它们的构建方式各不相同&#xff0c;技术不同&#xff0c;用户体验不同&#xff0c;并且都围绕一种可怕的方式来尝试在QA…

Maven打包时去掉项目版本号

Maven打包时去掉项目版本号 Maven打包后&#xff0c;jar或war文件名里带有版本号信息&#xff0c;如projectname0.0.1-SNAPSHOT.jar等&#xff0c;怎么去掉呢&#xff1f; 解决办法&#xff1a; 打开项目pom.xml文件&#xff0c;在<build> </build>标签内加入如下…

jsp实现上一页下一页翻页功能

前段时间一直忙于期末考试和找实习&#xff0c;好久没写博客了。 这段时间做了个小项目&#xff0c;包含了翻页和富文本编辑器Ueditor的两个知识点,Ueditor玩的还不是很深&#xff0c;打算玩深后再写篇博客。 要实现翻页功能&#xff0c;只需要设置一个pageIndex即可&#xf…

学习笔记之postgresql

/*************************************************************************创建人&#xff1a;LYK 创建时间&#xff1a;2019/05/05 14:47IDE: vs2013 库版本&#xff1a;32位 静态库数据库管理平台 pgAdmin III -- postgresql 注意事项&#xff1a;1&#xff0c;添加头文件…