
java 面向对象的程序设计
Java How to Program
lalalaAuraro
这个作者很懒,什么都没留下…
展开
-
类和对象的基本使用
成绩: 70.0分一、单选题 (题数:32,共 80.0 分)14.1 Q1: Which of the following statements is true?(2.5分)0.0 分A、Constructors can specify parameters and return types.B、Constructors can specify parameters but not ...转载 2020-03-31 15:48:01 · 458 阅读 · 1 评论 -
Basic Java Quiz
成绩: 72.5分一、单选题 (题数:40,共 100.0 分)13.6 Q5: Which of the following statements is true?(2.5分)0.0 分A、Both syntax errors and logic errors are caught by the compiler.B、Both syntax errors and logic erro...原创 2020-03-31 15:46:26 · 445 阅读 · 0 评论 -
Java 面向对象的程序设计 第一周练习
成绩: 83.4分 最高成绩:83.4分 作答记录一.单选题(共6题,100.0分)11.1 Q2: Which edition of Java is geared toward developing large-scale, distributed networking applications and web-based applications?A、 Standard Edi...原创 2020-03-31 15:42:51 · 457 阅读 · 0 评论 -
Java 面向对象的程序设计 第二周练习
成绩: 92分 最高成绩:96.0分 一.单选题(共25题,100.0分)12.2 Q5: Which command compiles the Java source code file Welcome.java?A、 cd Welcome.javaB、 javac Welcome.javaC、 java Welcome.javaD、 compile Welcome.ja...原创 2020-03-31 15:40:57 · 730 阅读 · 0 评论 -
类的基本使用(填空)
作答记录一.填空题(共1题,100.0分)public class Account {private 1 name;public 2 setName(String n){this.name = 3 ;}public 4 getName(){return name;}}import java.util.Sc...转载 2020-03-31 15:37:56 · 226 阅读 · 0 评论 -
Java 面向对象的程序设计 虚数类练习
虚数类(Complex Numbers) Create a class called Complex for performing arithmetic with complex numbers. Complex numbers have the formrealPart + imaginaryPart * iwhere i is√–1Write a program to test yo...原创 2020-04-04 14:55:30 · 553 阅读 · 0 评论