Java题目集1~3的总结

Posted oct-ly

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java题目集1~3的总结相关的知识,希望对你有一定的参考价值。

1.前言

第一次作业

主要涉及的知识点有基本数据类型、顺序结构、选择结构、循环结构、字符串、数组。题量很多,有12题,这对于刚学Java的我来说十分惊讶,一上来就要写这么多题,而且还是不熟悉语法的情况下,因此看到题目就有点慌了。难度的话不好说,因为大部分题目还是简单的,但第十题我感觉比较难,因为它涉及了一些String类的基本操作,而我不是很熟悉String,再加上题目理解起来可能有点难,所以我觉得第一次作业的难度还是有的。

第二次作业

主要涉及的知识点有基本数据类型、数组、顺序结构、选择结构、字符串。题量相比第一次减少了一点,一共9题。在我看来,这9题的难度适中,其中第八题和第九题的难度大一点。不知为啥比第一次作业做起来更顺畅一些,可能是在经历了第一次作业后对Java的基础语法有了更好的理解和运用,没有第一次写的那么吃力了。第二次作业考察的主要是选择结构,几乎每一题都涉及了几个选择,尤其是最后两题,很多选择结构。

第三次作业

主要涉及的知识点有构造类、LocalDate、顺序结构、选择结构,同时还要求我们能够读懂类图。题量比较少,只有四题。虽然题量少,但难度却直线上升,因为这几题都出现了构造类,这是之前没有遇到过的情形,第一次做有点不熟甚至陌生,总是要看着书本上的例题才能下手。同时,这次的第三题是第二次作业第九题的封装迭代,然后第四题又是第三题的迭代,也就是说迭代了两次,从求下一天到求下n天,前n天,以及两个日期相差的天数。第三次作业应该是为了让我们熟悉一下构造类的方法。

2.设计与分析

在这里我主要分析的是第三次作业,因为前两次作业都没有涉及到构造类。

7-1

类图

 

 源码

  

 import java.util.Scanner;
 public class Main 
 
     public static void main(String[] args) 
         // TODO Auto-generated method stub
         Circle circle=new Circle();
         Scanner input=new Scanner(System.in);
      double newRadius=input.nextDouble();
      circle.setRadius(newRadius);
        if(newRadius<0)
           
           System.out.print("Wrong Format");
            return;
            
      double areas=circle.getAreas();
         System.out.print("The circle\'s radius is:");
         System.out.println(String.format("%.2f",circle.getRadius())); 
         System.out.print("The circle\'s area is:");
         System.out.print(String.format("%.2f",circle.getAreas()));
     
 
 
 class Circle
     private double radius;
    Circle()
        radius=1;
    
    double getAreas() 
        return Math.PI*radius*radius;
    
    void setRadius(double newRadius) 
         radius=newRadius;
    
    double getRadius() 
        return radius;
    
   
 

分析

这是我第一次接触构造类,刚开始很懵,不知道怎么下手,虽然老师讲了,但是还是不太懂,然后通过看书本的例题,才知道怎么构造类,也了解了什么叫封装性,知道了private的属性不能直接调用,必须构造相应方法来给它赋值和取值。这一题比较简单,其中要注意的就是输出格式,pta上要求保留两位小数,我是采取String.format这个方法将输出格式化。

7-2

类图

 

 源码

 

 import java.util.Scanner;
 import java.time.LocalDate;
 public class Main 
     public static void main(String[] args) 
        Scanner input=new Scanner(System.in);
         Account account=new Account();
         int specialId=input.nextInt();
         double firstBalance=input.nextDouble();
         double annuallnterestRate1=input.nextDouble();
         account.setId(specialId);
         account.setBalance(firstBalance);
         account.setAnnuallnterestRate(annuallnterestRate1);
         double money1=input.nextDouble();
         double money2=input.nextDouble();
         account.withDraw(money1);
         account.deposit(money2);
         System.out.println("The Account\'balance:"+String.format("%.2f",account.getBalance()));
         System.out.println("The Monthly interest:"+String.format("%.2f",account.getMonthlyInterestRate()));
         System.out.println("The Account\'dateCreated:"+account.getDateCreated());
             
     
 
 class Account
     private int id=0;
     private double balance=0;
     private double annuallnterestRate=0;
     private LocalDate dateCreated=LocalDate.of(2020, 07, 31);
     public  Account()
         
     public void Accout(int id,double balance) 
         this.id=id;
         this.balance=balance;
     
     public void setId(int id)
       this.id=id;
     
     public int getId() 
         return this.id;
     
     public void setBalance(double balance)
         this.balance=balance;
     
     public double getBalance() 
         return this.balance;
     
     public void setAnnuallnterestRate(double annuallnterestRate)
         this.annuallnterestRate=annuallnterestRate;
     
     public double getAnnuallnterestRate() 
         return this.annuallnterestRate;
     
     public LocalDate getDateCreated() 
         return this.dateCreated;
     
     public double getMonthlyInterestRate() 
         return this.balance*(this.annuallnterestRate/1200);
     
     public void withDraw(double money)
         if(money>this.balance||money<0)
         
             System.out.println("WithDraw Amount Wrong");
         
         else
         
         this.balance=this.balance-money;
         
     
     public void deposit(double money) 
         if(money>20000||money<0) 
         
             System.out.println("Deposit Amount Wrong");
         
         else
         
         this.balance=this.balance+money;    
         
     
         
 

 

分析

这题并不难,在做过第一题之后,更清楚了类的操作,所以只要知道各个数值是怎么计算得来的差不多就能写出来,要注意的就是输出格式的问题。对了,这题还需要稍微了解一下LocalDate这个类,它可以方便的对日期进行相关操作。

7-3

类图

 

 

 

 

 源码

 import java.util.Scanner;
 public class Main 
     public static void main(String[] args) 
         Scanner input=new Scanner(System.in);
         int year=input.nextInt();
         int month=input.nextInt();
         int day=input.nextInt();
         Date date=new Date(year,month,day);
         date.getNextDate();
     
 
 class Date
     private int year=1900;
     private int month=1;
     private int day=1;
     protected int[]mon_maxnum=new int[]0,31,28,31,30,31,30,31,31,30,31,30,31;
     public Date()
     public Date(int year,int month,int day) 
         this.year=year;
         this.month=month;
         this.day=day;
     
     public int  getYear() 
         return this.year;
     
     public void setYear(int year) 
         this.year=year;
     
     public int getMonth() 
         return this.month;
     
     public void setMonth(int month) 
         this.month=month;
     
     public int getDay() 
         return this.day;
     
     public void setDay(int day) 
         this.day=day;
     
     public boolean isleapYear(int year) 
         if(year%400==0||(year%4==0&&year%100!=0))
         
             return true;
         
         else
                     
          return false;
         
     
     public boolean checkInputValidity() 
         if(isleapYear(this.year))
         
             this.mon_maxnum[2]=29;
         
         else 
         
             this.mon_maxnum[2]=28;
         
         if(this.year<1900||this.year>2000) 
         
             return false;
         
         else if(this.month<1||this.month>12)
             return false;
         
         else if(this.day>this.mon_maxnum[this.month]||this.day<1)
             return false;
         
         else 
         
             return true;
         
     
     public void getNextDate() 
         if(isleapYear(this.year))
         
             this.mon_maxnum[2]=29;
         
         else 
         
             this.mon_maxnum[2]=28;
         
          if(checkInputValidity()==false)
          
          System.out.print("Date Format is Wrong");
          System.exit(0);
              
          else
           
               if(this.day<this.mon_maxnum[this.month])
           
               this.day++; 
           
             else if(this.month!=12&&this.day==this.mon_maxnum[this.month])
           
               this.day=1;
               this.month++;              
           
             else if(this.month==12&&this.day==31)
           
               this.day=1;
               this.month=1;
               this.year++;              
           
               System.out.print("Next day is:"+this.year+"-"+this.month+"-"+this.day);              
               return;
                                
         
 

分析

当老师在课堂上说让我们写一个程序求下一天的时候,我就觉得这个题目不简单,因为要考虑蛮多因素,比如输入日期是否合法,年份是否为闰年,当天是否为该月最后一天,又或者下一天是否直接是下一年的第一天了。说一下判断闰年的方法,如果输入的年份能被400整除或者能被4整除但不能被100整除,那么该年为闰年。然后我说一下自己求下一天的思路:先判断年份是否为闰年,如果是,那么2月天数就为29天,此时月份数组mon_maxnum[2] = 29;然后判断这一天是否为该月最后一天,如果不是,则直接天数+1,如果是的话,再判断该月是否为12月,如果不是,天数改为1,月份+1,如果是的话,天数和月份均改为1,并且将年份+1。

7-4

类图

 

 

源码

 import java.util.Scanner;
 public class Main 
     public static void main(String[] args) 
         Scanner input = new Scanner(System.in);
         int year = 0;
         int month = 0;
         int day = 0;
 
         int choice = input.nextInt();
 
         if (choice == 1)  // test getNextNDays method
             int m = 0;
             year = Integer.parseInt(input.next());
             month = Integer.parseInt(input.next());
             day = Integer.parseInt(input.next());
 
             DateUtil date = new DateUtil(year, month, day);
 
             if (!date.checkInputValidity()) 
                 System.out.println("Wrong Format");
                 System.exit(0);
             
 
             m = input.nextInt();
 
             if (m < 0) 
                 System.out.println("Wrong Format");
                 System.exit(0);
             
 
             System.out.print(date.getYear() + "-" + date.getMonth() + "-" + date.getDay() + " next " + m + " days is:");
             System.out.println(date.getNextNDays(m).showDate());
          else if (choice == 2)  // test getPreviousNDays method
             int n = 0;
             year = Integer.parseInt(input.next());
             month = Integer.parseInt(input.next());
             day = Integer.parseInt(input.next());
 
             DateUtil date = new DateUtil(year, month, day);
 
             if (!date.checkInputValidity()) 
                 System.out.println("Wrong Format");
                 System.exit(0);
             
 
             n = input.nextInt();
 
             if (n < 0) 
                 System.out.println("Wrong Format");
                 System.exit(0);
             
 
             System.out.print(
                     date.getYear() + "-" + date.getMonth() + "-" + date.getDay() + " previous " + n + " days is:");
             System.out.println(date.getPreviousNDays(n).showDate());
          else if (choice == 3)     //test getDaysofDates method
             year = Integer.parseInt(input.next());
             month = Integer.parseInt(input.next());
             day = Integer.parseInt(input.next());
 
             int anotherYear = Integer.parseInt(input.next());
             int anotherMonth = Integer.parseInt(input.next());
             int anotherDay = Integer.parseInt(input.next());
 
             DateUtil fromDate = new DateUtil(year, month, day);
             DateUtil toDate = new DateUtil(anotherYear, anotherMonth, anotherDay);
 
             if (fromDate.checkInputValidity() && toDate.checkInputValidity()) 
                 System.out.println("The days between " + fromDate.showDate() + 
                         " and " + toDate.showDate() + " are:"
                         + fromDate.getDaysofDates(toDate));
              else 
                 System.out.println("Wrong Format");
                 System.exit(0);
             
         
         else
             System.out.println("Wrong Format");
             System.exit(0);
                 
     
 
 class DateUtil
     private int year=1820;
     private int month=1;
     private int day=1;
     protected int[]mon_maxnum=new int[]0,31,28,31,30,31,30,31,31,30,31,30,31;
     public DateUtil()
     public DateUtil(int year,int month,int day) 
         this.year=year;
         this.month=month;
         this.day=day;
     
     public int  getYear() 
         return this.year;
     
     public void setYear(int year) 
         this.year=year;
     
     public int getMonth() 
         return this.month;
     
     public void setMonth(int month) 
         this.month=month;
     
     public int getDay() 
         return this.day;
     
     public void setDay(int day) 
         this.day=day;
     
     public boolean isLeapYear(int year) 
         if(year%400==0||(year%4==0&&year%100!=0))
         
             return true;
         
         else
                     
          return false;
         
     
     public boolean checkInputValidity()
         if(isLeapYear(this.year))
         
             this.mon_maxnum[2]=29;
         
         else 
         
             this.mon_maxnum[2]=28;
         
         if(this.year<1820||this.year>2020||this.day>this.mon_maxnum[this.month]||this.day<1||this.month<1||this.month>12) 
         
             return false;
         
         else 
         
             return true;
         
     
     public DateUtil getNextNDays(int n) 
        while(n>365) 
           
           if(isLeapYear(this.year)&&this.month<=2) 
              if(this.month==2&&this.day==29) 
               this.day=1;
               this.month=3;
              
               this.year++;
               n-=366;
           
           else if(isLeapYear(this.year+1)&&this.month>2) 
               this.year++;
               n-=366;      
           
           else 
               this.year++;
               n-=365;
           
        
           for(int i=0;i<n;i++) 
                 if(isLeapYear(this.year))
                     this.mon_maxnum[2]=29;
                 
                 else 
                     this.mon_maxnum[2]=28;
                 
                 if(this.day<this.mon_maxnum[this.month]) 
                       this.day++; 
                   
                     else if(this.month!=12&&this.day==this.mon_maxnum[this.month])
                       this.day=1;
                       this.month++;              
                   
                     else if(this.month==12&&this.day==31)
                       this.day=1;
                       this.month=1;
                     this.year++;              
                       
                           
      
         return this;                  
     
     public DateUtil getPreviousNDays(int n) 
         if(n==0)
            return this;
         
         
         
         while(n>365)
               if(isLeapYear(this.year)&&this.month>2) 
                   this.year--;
                   n-=366;
               
               else if(isLeapYear(this.year-1)&&this.month<=2) 
                   this.year--;
                   n-=366;      
               
               else 
                   this.year--;
                   n-=365;
               
           
         for(int i=0;i<n;i++) 
             if(isLeapYear(this.year))
                 this.mon_maxnum[2]=29;
             
             else 
                 this.mon_maxnum[2]=28;
             
             if(this.day>1) 
                 this.day--;
             
             else if(this.day==1) 
                 this.day=this.mon_maxnum[this.month-1];
                 if(month!=1) 
                     this.month--;
                 
                 if(this.month==1) 
                     this.year--;
                     this.month=12;
                     
                 
           
         this.month++;
             return this;    
     
     public boolean compareDates(DateUtil date) 
         if(this.year>date.year) 
         
             return true;
         
         else if(this.year==date.year&&this.month>date.month)
         
             return true;
         
         else if(this.year==date.year&&this.month==date.month&&this.day>date.day)
         
             return true;
         
         else 
         
             return false;
         
         
     
     public boolean equalTwoDates(DateUtil date) 
         if(this.year==date.year&&this.month==date.month&&this.day==date.day)
         
             return true;
         
         else
         
             return false;
             
     
     public int getDaysofDates(DateUtil date) 
         
         int daysBetween=0;
         int[]mon_maxnum=new int[]0,31,28,31,30,31,30,31,31,30,31,30,31;
         int yearSum=0;
         int monthSum1=0;
         int monthSum2=0;
         int t;
        
         if(year>date.year) 
             t=date.year;
             date.year=year;
             year=t;
                 
         for(int i=year;i<date.year;i++) 
             if(isLeapYear(i)) 
                 yearSum+=366;
             
             else 
                 yearSum+=365;
                 
         
         for(int i=1;i<month;i++) 
             monthSum1+=mon_maxnum[i];    
         
         if(isLeapYear(year)&&month>2) 
             monthSum1++;
         
         for(int i=1;i<date.month;i++) 
             monthSum2+=mon_maxnum[i];    
         
         if(isLeapYear(date.year)&&date.month>2) 
             monthSum2++;
         
       
         daysBetween=yearSum+monthSum2+date.day-monthSum1-day;
         return daysBetween;
 
     
     public String showDate() 
         return String.format("%d-%d-%d", year,month,day);
     
 

分析

这一题是7-3的迭代,它在7-3的基础上进行升级,同时还要求前n天和两个日期相差的天数,算法应该是目前为止遇到的最复杂的了。先说一下求下n天的方法:如果n大于365,则进行第一个for循环将n减到小于等于364天,在循环里,如果该年为闰年并且月份小于等于2月,然后日期又为2月29日,则下一年后的这天为3月1日,否则月份和天数不变,n-366;如果该年的下一年为闰年并且月份大于2月,则下一年后的这天日期不变,n-366;如果上面情况都不符合,则下一年后的这天日期不变,n-365。再用第二个for循环用7-3的方法循环n次,得到剩余n天后的日期即为一开始要求的第n天后的日期。求前n天的方法与求下n天的方法类似,但判断的情况有一些不同,只要把判断的点想清楚就能写出来,这里就不阐述了。然后说一下求两个日期相差的天数的方法:我是分年,月,日来算的,先算相差的年份的总天数,求完后相当于这两个日期都在同一年了,再求相差的月份的总天数,最后再求两个日期中day相差的天数,最后把这三个相差的天数相加得到总天数。

3.踩坑心得

第一次作业

在作业一踩的最粗心的坑就是pta上的编译器没有选择Java,用了好多次c语言编译器进行编译,结果编译错误了好久,让我一度以为是自己代码有语法错误,直到第二天看到老师在群里的提醒,我才发现要用Java编译器,一下醒悟过来,现在想一想我当初真的太粗心马虎了。除了这个,就是输出结果的格式问题导致我经常部分正确,然后改完输出格式后就正确了,所以这告诉我在以后的做题中要仔细地考虑输出结果格式,不要因为这个而丢了分。

踩坑截图

 

 改正后

 

 

 

 在换了编译器后,我是部分正确,在经过几次改进后才艰辛的得到正确答案。第一次写Java就感觉到了与c语言的不同之处。

二次作业

在作业二中踩的印象最深的坑就是7-8中的等腰直角三角形的判断情况,因为这里涉及浮点数判等。这个判断卡了我好长一段时间,一直过不了这个测试点。最后在老师的提示以及询问了班上的大佬之后,才知道浮点数判等必须两个浮点数的差的绝对值在一个很小很小的范围内才能判等。除了这个坑外,在写7-9的时候,我没有用月份数组来储存每个月份的天数,而是一个一个月份列举,使得代码十分冗长,这个在第三次作业上的7-3和7-4都进行了改进。

踩坑截图

 

 

 

 

 

 

改正后

 

 

 

 

 第三次作业

似乎没有踩到什么坑,但是算法上思考了很久,同时询问了好几个同学,因为前面已经分析过第三次作业了,这里就不再阐述了。详情请见“设计与分析”。

4.改进建议

(1)刚接触Java,不知道相应的代码规范,虽然老师发了阿里的代码规范,但是我没有很重视,所以在前三次作业中的代码都很不规范,在以后的Java学习中我会遵守相应的代码规范,不再随意写代码。

(2)题目中有的方法不够方便,比较繁琐。就比如第二次作业中的7-9求下一天,我将月份一个一个列举出来判断,导致判断很冗长。因此我以后得多多向优秀的同学学习,多与他们讨论代码,看一下自己的代码存在哪些不足的地方然后加以改进。

(3)写题目时要注意输出结果的格式问题,比如保留两位小数之类的

(4)写题目时要认真考虑边界值。

5.总结

获得的知识

通过这三次作业,我熟悉了Java的一些基础语法,同时也知道了构造类的方法,充分意识到Java与C语言的不同,了解了Java的封装性,进一步明白它面向对象程序设计的独特性。同时我还学习了一些类的使用方法,比如LocalDate,Random类。

需要进一步学习的知识

我觉得我需要系统地学习Java知识,不能老是遇到问题就去查零散的知识,要多看书本和询问同学,书本是获取知识的最好途径,《Java语言程序设计》这本书有很完整的Java知识,希望在以后能先从书本里学到系统的知识再去做题。这个专业很难,需要我们长期的努力学习。我们必须循序渐进,一步一个脚印,踏实写好每一次作业和实验。

 

以上是关于Java题目集1~3的总结的主要内容,如果未能解决你的问题,请参考以下文章

PTA题目集1~3的总结

PTA题目集7-9的总结

201621123054《Java程序设计》第九周学习总结

OOP课程题目集第二次总结

201621123047 《Java程序设计》第10周学习总结

作业10-异常 java