99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

代寫COMP1721、代做java程序設(shè)計

時間:2024-02-21  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯



COMP1721 Object-Oriented Programming
Coursework 1: Creating & Using Classes
1 Introduction
This assignment assesses your ability to implement classes and use them in a small program.
Consider the GPS data generated by a device such as a mobile phone. Your current location is represented
as a point, consisting of a timestamp, a longitude (in degrees), a latitude (in degrees) and an elevation above
sea level (in metres). Movement while GPS is enabled generates a track: a sequence of points representing
successive samples from the GPS sensor.
Your main task is to implement classes named Point and Trackthat can be used to represent points and
tracks, along with a small program that demonstrates the use of these classes. Figure 1 is a UML class
diagram showing the required features of, and relationship between, the two classes.
Figure 1: Classes used in Coursework 1
2 Preparation
2.1 Files Needed
Download cwk1files.zip from Minerva and unzip it. The best way of doing this on a SoC Linux machine
is in a terminal window, via the command
unzip cwk1files.zip
This will give you a directory named cwk1, containing all of the files you need.
Remove the Zip archive, then study the files in cwk1. In particular, examine the file README.md , as this
provides guidance on how to run the tests on which your mark will be largely based.
Note: all code should be written in the .java files provided in the src/main/javasubdirectory.
2.2 Method Stubs
A suite of unit tests is provided with the files for this coursework. These tests are used to verify that the
methods of the two classes have been implemented correctly. You will be awarded one mark for each test
that passes. The starting point for the coursework is to make sure that the tests compile and run.This means
that it is necessary to begin by creating method stubs: dummy versions of each method that do just enough
that the tests will compile successfully.
Refer to Figure 1 for details of the stubs that are required, and note the following:
• All stubs should have the parameter lists and return types shown in the UML diagram
• Constructors should be implemented as empty methods (nothing inside the braces)
• Any method that returns a numeric value should just return a value of zero
• Any method that returns an object should just return the valuenull
1
Note also that thePoint class references a class from the Java standard library namedZonedDateTime . This
is part of Java’s standard Date/Time API, defined in the package java.time—see the API documentation
for further details. To use it, you will need to add animportstatement to the start of Point.java:
import java.time.ZonedDateTime;
When you have created stubs for all the methods shown in Figure 1, you can attempt to compile and run the
tests using Gradle. See README.md for full details of how Gradle can be used.We simply note here that you
can run the tests from a Linux or macOS command line with
./gradlew test
Omit the ./ from the start of this command if you are working from the Windows command prompt, or use
.\gradlew.batto invoke Gradle if you are using Windows Powershell.
3 Basic Solution
This is worth 18 marks.
Please read all of the subsections below before starting work. We also recommend that you gain some
experience of implementing classes by doing the relevant formative exercises before you start.
3.1 PointClass
To complete the implementation of thePoint class, make the following changes toPoint.java:
• Add a field to represent the timestamp, of typeZonedDateTime(see below).
• Add fields to represent longitude, latitude and elevation, all of typedouble.
• Add code to the constructor that initialises the fields to the values supplied as method parameters,
with validation done for longitude and latitude (see below).
• Modify the ‘getter’ methods (getTime(), getLongitude(), etc) so that they return the relevant field
values, instead of the defaults like 0 ornull that were returned by the stubs.
• Change toString() so that it returns a string representation of a Point looking like this:
(-1.54853, 53.80462), 72.5 m
(The values here are longitude, then latitude, then elevation. The string should be formatted exactly
as shown here. Note the specific number of decimal places being used for each number!)
Make sure that it is not possible to create a Point object with an invalid latitude or longitude. Use the
constants provided in the class to help you with this, and throw an instance of the provided exception class,
GPSException, if inappropriate coordinates are supplied.
As you replace each method stub with its correct implementation, rerun the tests.You should see a growing
number of tests changing in status from FAILED to PASSED.
3.2 TrackClass
For the basic solution, make the following changes toTrack.java:
• Add a field suitable for storing a sequence ofPoint objects.
• Modify the constructor that take a string as its parameter, so that it initialises the field used to store
the Point objects and then calls the readFile() method.
• Add to readFile() some code that will read data from the file with the given filename, createPoint
objects from this data and then store those Point objects as a sequence (see below).
• Modify the size() method so that it returns the number of points currently stored in the track.
• Modift the get() method so that it returns thePoint object stored at a given position in the sequence.
Position is specified as an int parameter and should be validated (see below).
• Modify the add()method so that it adds a new point, supplied as a method parameter, to the end of
the track.
2
The readFile() method will need to read CSV files, examples of which can be found in thedatadirectory.
It should use a Scannerto do this. A good approach here would be to read the file line-by-line, split up the
line on commas, then parse each item separately.The lectures discuss how a file can be read in this manner.
You can use the static methodparse() of the ZonedDateTimeclass to parse the timestamp.
readFile() should NOT catch any exceptions that might occur during reading of the file. It will need an
exception specification, declaring that anIOExceptioncould happen if the named file cannot be accessed.
Your implementation should also explicitly throw a GPSExceptionif any record within the file doesn’t
contain the exact number of values needed to create a Point object. Note that you do not need to include
GPSExceptionas part of the method’s exception specification, because this exception class is not one of
Java’s ‘checked exception’ types.
The get() method should use the int value passed to it as an index into the sequence ofPoint objects, but
before doing that the method should check this int value and throw an instance of GPSExceptionif it is
not within the allowed range. Once again, note that there is no need to include an exception specification
for this.
As you replace each method stub with its correct implementation, rerun the tests.You should see a growing
number of tests changing in status from FAILED to PASSED.
4 Full Solution
This is worth a further 12 marks. It involves completing the implementation of the Trackclass and then
writing a small program that uses the two classes.
4.1 TrackClass
If you’ve completed the basic solution, there should be four remaining method stubs inTrack.java, which
should be modified as indicated below.
• Modify lowestPoint() and highestPoint() so that they return thePoint objects having the lowest
and highest elevations, respectively.
• Modify totalDistance() so that it returns the total distance travelled in metres when moving from
point to point along the entire length of the track (see below).
• Modify averageSpeed()so that it returns the average speed along the track, in metres per second
(see below)
All four of these methods should throw aGPSExceptionif the track doesn’t contain enough points to do the
necessary computation.
To implementtotalDistance(), you will need to compute ‘great-circle distance’ between adjacent points
on the track. A method to do this already exists in the Point class. Given two Point objects, pand q, the
great-circle distance in metres between them (ignoring elevation) will be given by
double distance = Point.greatCircleDistance(p, q);
To implement averageSpeed()you will need to compute the amount of time that has passed between
measurements for the first and last points on the track.You can use theChronoUnittype for this: specifically,
the between()method, which can be called on the object ChronoUnit.SECONDS to yield the time interval
in seconds between twoZonedDateTimeobjects.
Note: the ChronoUnitclass is part of Java’s standard Date/Time API. To use it, you will need to add an
importstatement to Track.java:
import java.time.temporal.ChronoUnit;
As you replace each method stub with its correct implementation, rerun the tests. Your goal here is to end
up with all 26 tests passing. If you achieve this, you can be assured of getting at least 26 marks for the
coursework.
4.2 TrackInfoProgram
Edit the file TrackInfo.java. In this file, create a small program that creates a Trackobject from data in
a file whose name is provided as a command line argument. You program should display: the number of
points in the track; its lowest and highest points; the total distance travelled; and the average speed.
3
Requiring the filename as a command line argument means that it has to be supplied as part of the command
that runs the program; the program should not be prompting for input of the filename once it has started
running!
For example, if running the program directly within a terminal window, you would need to enter
java TrackInfo walk.csv
Note that you can run the program with a suitable command line argument via Gradle:
./gradlew run
This will run the program on the file data/walk.csv.
You can also check whether your program behaves correctly when no filename has been supplied on the
command line, by doing
./gradlew runNoFile
When your program is run on walk.csv, it should generate output very similar to this:
194 points in track
Lowest point is (-1.53637, 53.79680), 35.0 m
Highest point is (-1.5****, 53.80438), **.6 m
Total distance = 1.**4 km
Average speed = 1.441 m/s
Your output doesn’t need to be identical in layout, but it should provide all the data shown here, and numbers
should be formatted with the number of decimal places shown in this example.
If no filename is supplied on the command line, your program should print a helpful error message and then
use System.exit()to terminate, with a value of zero for exit status.
The program should intercept any exceptions that occur when reading from the file or performing computation. The program should print the error message associated with the exception and then use System.exit()
to terminate, with a non-zero value for exit status.
5 Advanced Tasks
For a few extra marks, implement ONE of two options suggested below.
These tasks are more challenging and will require additional reading/research. They are also worth
relatively few marks. Attempt them only if you manage to complete the previous work fairly quickly
and easily.
5.1 Option 1: KML Files
This is worth an additional 2 marks.
1. Add to theTrackclass a new method namedwriteKML. This should have a singleString parameter,
representing a filename. It should write track data to the given file, using Google’s Keyhole Markup
Language format.
2. Edit ConvertToKML.javaand add to it a program that converts a CSV file of track data into a KML
file. The program should expect filenames for these two files as command line arguments, with the
CSV file as the first argument and the KML file as the second argument. It should deal with missing
arguments and exceptions in the same way asTrackInfo.
3. Generate a KML file for the track represented bywalk.csv. You can do this with Gradle, using
./gradlew runKML
This will generate its output in a file walk.kml, in the build subdirectory.
Visualise the file by uploading it to Google Maps (see Figure 2) or by importing it into Google Earth.
Grab a screenshot of the result and place it in the cwk1directory so that it will be included in your
submission.
4
5.2 Option 2: Elevation Plot
This is worth an additional 4 marks.
1. Investigate JavaFX by reading David Eck’s online Java Notes and other online sources.In particular,
you will need to research how charts can be drawn in JavaFX.
2. Edit build.gradle and uncomment the various commented-out parts relating to JavaFX.
3. Edit the file PlotApplication.java and implement in this file a JavaFX application that plots
elevation as a function of distance along a track. As with TrackInfo, the file of track data should be
specified as a command line argument.
You can run your application onwalk.csvvia Gradle, with this command:
./gradlew runPlot
Figure 3 shows an example of what the plot could look like.
6 Submission
Use Gradle to generate a Zip archive containing all the files that need to be submitted:
./gradlew submission
This produces a file named cwk1.zip. Submit this file to Minerva, via link provided for this purpose. You
can find this link in the ‘Assessment and Feedback’ section, under ‘Submit My Work’.
Note: be careful to submit the correct Zip archive here! Make sure you do not accidentally submit the Zip
archive of provided files . . .
The deadline for submissions is 14.00 Wednesday 6th March 2024. The standard university penalty of 5%
of available marks per day will apply to late work, unless an extension has been arranged due to genuine
extenuating circumstances.
Note that all submissions will be subject to automated plagiarism checking.
7 Marking
40 marks are available for this assignment.
A basic solution can earn up to 24 marks (60% of those available); a full solution can earn up to 36 marks
(**% of those available).
Mark allocation breaks down as follows:
18 Tests for basic solution
8 Tests for full solution
4 TrackInfoprogram
4 Advanced task
6 Sensible use of Java and coding style
請加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp 

掃一掃在手機打開當前頁
  • 上一篇:代寫MLDS 421: Data Mining
  • 下一篇:代做EEE3457編程、代寫Java/Python程序語言
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計優(yōu)化
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計優(yōu)化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發(fā)動機性能
    挖掘機濾芯提升發(fā)動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現(xiàn)代科技完美結(jié)合
    海信羅馬假日洗衣機亮相AWE 復古美學與現(xiàn)代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                色94色欧美sute亚洲13| 欧美视频一区二区三区在线观看| 97久久精品人人做人人爽 | 成人福利在线看| 精品成人a区在线观看| 国产福利91精品一区| 国产精品区一区二区三| 91丨porny丨户外露出| 婷婷国产在线综合| 精品成人私密视频| 欧美中文字幕一区二区三区 | 三级不卡在线观看| 久久蜜桃一区二区| 91欧美激情一区二区三区成人| 亚洲欧美另类久久久精品2019| 欧美久久高跟鞋激| 99精品一区二区| 国产一区二区三区综合| 一区二区三区在线视频观看| 日韩女同互慰一区二区| 91丝袜高跟美女视频| 久久99国产精品麻豆| 亚洲欧美日韩国产成人精品影院 | 精品国内二区三区| 91精彩视频在线| 丰满白嫩尤物一区二区| 天堂av在线一区| 亚洲三级在线播放| 国产视频一区在线观看| 91国内精品野花午夜精品| 国产原创一区二区三区| 香蕉乱码成人久久天堂爱免费| 国产午夜三级一区二区三| 911精品国产一区二区在线| 成人av电影在线观看| 九色|91porny| 麻豆国产精品官网| 亚洲成人精品影院| 综合久久久久久久| 欧美国产精品中文字幕| 日韩一区二区免费在线电影| 欧美日韩国产中文| 欧美少妇性性性| 欧美午夜精品一区| 欧美日韩专区在线| 欧美日韩高清一区二区三区| 91在线国内视频| 91性感美女视频| 91免费视频大全| 91视频在线看| 在线视频一区二区三区| 91香蕉视频在线| 欧美在线你懂得| 在线观看免费一区| 欧美日韩黄色影视| 69av一区二区三区| 日韩美女在线视频| 国产蜜臀97一区二区三区| 国产女同互慰高潮91漫画| 日本一区二区三区四区 | 午夜在线电影亚洲一区| 天堂一区二区在线免费观看| 午夜影院久久久| 日本欧美肥老太交大片| 久久精品国产久精国产爱| 久久精品国产亚洲5555| 国产精品一二一区| 99久久99久久精品免费观看 | 91精品国产综合久久婷婷香蕉| 日韩视频123| 国产丝袜欧美中文另类| 亚洲丝袜精品丝袜在线| 亚洲福利一二三区| 精品一区二区三区欧美| 懂色av一区二区三区蜜臀| 91麻豆swag| 日韩午夜在线观看视频| 国产亚洲一区二区三区四区 | 成人97人人超碰人人99| 99久久久无码国产精品| 欧美日韩精品欧美日韩精品一综合| 欧美日韩国产片| 久久综合久久综合久久| 国产精品久久久99| 日韩成人一区二区| 国产成人免费视| 欧美美女一区二区在线观看| 亚洲精品一区二区精华| 亚洲人成网站影音先锋播放| 亚洲成av人片在线观看无码| 国产在线精品一区二区不卡了| 国产69精品久久久久777| 欧美性大战久久久| 久久精品日产第一区二区三区高清版| 亚洲精品欧美激情| 国产一区二区三区蝌蚪| 欧美午夜片在线观看| 久久在线观看免费| 日韩精品一级中文字幕精品视频免费观看 | 色老汉av一区二区三区| 久久久精品日韩欧美| 午夜精品久久一牛影视| 成人黄页毛片网站| 日韩一级大片在线观看| 亚洲成人免费视频| 色呦呦一区二区三区| 欧美国产乱子伦| 奇米色777欧美一区二区| 91国产免费观看| 欧美一区二区福利在线| 国产三级欧美三级| 麻豆久久久久久| 69久久夜色精品国产69蝌蚪网| 欧美国产精品劲爆| 国产精品一区二区三区网站| 91精品国产综合久久久久久漫画 | 国产欧美日韩在线看| 肉丝袜脚交视频一区二区| 欧美中文字幕不卡| 一卡二卡欧美日韩| 91麻豆免费视频| 亚洲欧洲综合另类在线| 国产91精品一区二区| 国产欧美精品区一区二区三区| 久久99热狠狠色一区二区| 欧美精品久久99| 午夜国产不卡在线观看视频| 在线观看国产91| 亚洲国产视频在线| 91精品国产综合久久精品性色| 日韩中文字幕av电影| 538prom精品视频线放| 日韩中文字幕一区二区三区| 日韩一区二区影院| 精品伊人久久久久7777人| 久久久噜噜噜久久中文字幕色伊伊| 国产永久精品大片wwwapp| 久久久久久久久久久久电影 | 亚洲免费在线看| 99国产一区二区三精品乱码| 日韩美女视频19| 色一情一乱一乱一91av| 亚洲午夜电影在线| 91麻豆精品国产91久久久久久 | 亚洲v日本v欧美v久久精品| 在线免费av一区| 亚洲第一主播视频| 精品国产免费一区二区三区四区 | 成年人国产精品| 亚洲精品乱码久久久久久久久| 欧美日韩视频在线观看一区二区三区 | 精品欧美乱码久久久久久1区2区| 免费成人小视频| 国产欧美日韩激情| 在线免费观看日本欧美| 麻豆中文一区二区| 国产精品高潮呻吟久久| 欧美午夜寂寞影院| 成人亚洲一区二区一| 亚洲1区2区3区视频| 久久久久久久免费视频了| 91麻豆精品一区二区三区| 日本欧美久久久久免费播放网| 亚洲国产成人私人影院tom| 在线视频综合导航| 国产精品一区三区| 日韩av中文字幕一区二区| 国产精品久久久久影视| 日韩欧美一区中文| 在线中文字幕一区| 国产精品77777| 日韩电影在线一区二区| 亚洲视频在线观看三级| 久久久久久久一区| 欧美一二三在线| 欧美最猛黑人xxxxx猛交| 懂色av噜噜一区二区三区av| 视频一区在线播放| 亚洲天堂福利av| 国产丝袜欧美中文另类| 日韩三级免费观看| 欧美日韩视频在线一区二区| 9i在线看片成人免费| 国产伦精品一区二区三区在线观看| 一区二区三区欧美| 亚洲欧洲制服丝袜| 国产精品理论在线观看| www激情久久| 日韩女优av电影| 日韩三级免费观看| 欧美一三区三区四区免费在线看 | 国产精品一级黄| 国产伦精品一区二区三区视频青涩| 日本不卡中文字幕| 婷婷开心激情综合| 日本美女视频一区二区| 首页国产欧美日韩丝袜| 亚洲va国产va欧美va观看| 亚洲精品国产精华液| 亚洲男人天堂一区|