久久久久久精品无码人妻_青春草无码精品视频在线观_无码精品国产VA在线观看_国产色无码专区在线观看

CS1083代做、代寫Java設計編程

時間:2024-03-03  來源:  作者: 我要糾錯



Module 9 Assignment
Worth 2% of your total course grade
CS1083 – Introduction to Computer Programming II (in Java)
Online Open Entry Version
Instructor: Andrew McAllister
Assignment Objectives
The purpose of this assignment is to give you practice:
• working with linked lists
General Instructions for All Assignments
• Follow the instructions in the document "Java Coding Guidelines.pdf" available
within the "Start Here" module, under the "Assignments" topic.
• For each .java file you create, include a javadoc comment (one that begins with
/**) at the beginning of the file that describes that Java class. This comment block
should include a line that begins with @author followed by your name and
student number on the same line. (Note: inclusion of this comment is part of the
instructions given in "Java Coding Guidelines.pdf")
• Include comments throughout your programs to explain any non-obvious portions
of your code.
• It is recommended that you create a separate folder on your computer for each
assignment. You might even wish to create separate sub-folders within an
assignment folder if the assignment has multiple parts. Keeping your work
organized makes it easier to find things later when you want to review what you
have done.
• Few things in life are more frustrating than losing your work while working on an
assignment. Get in the habit of saving frequently when working on an
assignment. Also, regularly make backup copies of any files you create as part of
your work for this course.
Assignment Guide
• Feel free to email your instructor if you need help in completing an assignment.
When you do so, please attach to the email a copy of *all* files required to
compile and run the program you are asking about, even if you downloaded
those files from D2L. (Otherwise the instructor will have to figure out what files
are missing and then go looking for them. Make it convenient to help you.) Also
describe the problem you are encountering and the specific help you would like
to receive.
• Submitting your assignment involves creating a pdf file and uploading that single
file to the assignment drop box on D2L. In general, that file will tend to include all
Java code you wrote for the assignment, plus any output from running your
programs that the assignment instructions specify you should capture. Specific
submission instructions are included at the end of each assignment.
• To create the pdf file for each assignment, begin by opening a new document
using the word processing program of your choice. Save the document using the
name “Your Name CS1083 Module x Assignment Submission.docx” Replace x
with the correct module number. “docx” may be different depending on which
word processing software you choose to use.
• If you don’t already have a word processor, UNB students are able to use
Microsoft Office 365 (includes Microsoft Word) for free, which can be accessed
by logging in to MyUNB.
• At the beginning of your submission document enter your name, your student
number, CS1083, the assignment name (this one is “Module 2 Assignment”), and
the date. It doesn’t matter if the date is when you started working on the
assignment or when you submit it – either will do.
• You can add content to your submission document as you work on the various
questions in the assignment. Clearly label each part of the assignment (“Part A”
etc.) in your document. Be sure to save frequently as you work on this document.
• When your document is complete, save / export it as a pdf file. Always make sure
your pdf file opens properly before uploading it.
• To include Java code in your submission document, copy all the text in your .java
file and then paste that text into your submission document. Use a monospaced
font (e.g.: Consolas , Courier ) for your code to maintain proper indentation.
Submitting code without proper indentation will result in marks being deducted.
It’s not enough that your code is indented in your text editor or in your integrated
programming environment – the indentation must show up that way in your
submission document as well. This sort of thing is part of learning to be an IT
professional.
• To include output from running your program in your submission document, the
preferred method is to copy and paste the text from your command prompt
window. Include the line with the “java” command you used to run your program.
 If the text shows up as a weird font or colour in your submission document,
first paste the text into a blank text editor document, then copy and paste from
there into your Microsoft Word submission document. This will remove all
formatting from the text.
 Use a monospaced font (e.g.: Consolas , Courier ) for output text in your
Word document. This will maintain alignment of your output.
• If at all possible, each line of code and each line of output should appear on a
single line in your submission document. Avoid allowing lines to “wrap” around
onto the next line. Use the tips provided in the “Avoiding Wrapped Lines” section
on the next page to accomplish this.
• To copy text from your command prompt window, try selecting the desired text
and then pressing either command-c (Mac) or control-c (Windows or Linux). If
you have issues, you can always use Google to see how to do this on your
specific type of computer.
• If a program involves graphical output (such as a JavaFX GUI program), capture
a screen shot of the output and include that as a picture / image in your
submission document.
 Make sure the image includes only the relevant portion of the screen (such
as a GUI window). Capturing an image of your entire computer screen often
makes the relevant portion too small to see, with tiny text that is difficult to read.
This makes your assignment submission difficult to grade.
• To capture a screen shot of a selected portion of your screen, try command-shift4 (Mac), WindowsKey-shift-s (Windows), or shift-PrtScrn (Linux).
Avoiding Wrapped Lines
In the following example, the lines of code containing the comment and the println
statement are both too long. The text is formatted so those lines can't fit all on one line
in this document. This obscures the indentation and makes the code more difficult to
read.
import java.util.Scanner;
public class WrapExample
{ public static void main(String[] args)
{ double pay = hours * wage;
int dollars = (int) pay;
int pennies = (int) ((pay - dollars) * 100.0);
// First all * and / operations are performed, left to
right, then all + and - operations, left to right
System.out.println("nThe pay for " + name + " is " +
dollars + " dollars and " + pennies + " cents.n");
} // end main method
} // end class
Below is the same code, but reformatted so none of the statements wrap around onto
the next line. Several changes were made:
1. The font size (in the Word document) is changed to a smaller size,
2. The tab size (in the Word document) is reduced
3. The longer statements and long comments are broken up onto multiple lines (do
this in your text editor, in the .java file), and
4. If need be, you can change the orientation of your Word document from Portrait
to Landscape
Now the indentation of the code within the main method is easier to see.
import java.util.Scanner;
public class WrapExample
{ public static void main(String[] args)
{ double pay = hours * wage;
int dollars = (int) pay;
int pennies = (int) ((pay - dollars) * 100.0);
// First all * and / operations are performed, left to right
 // Then all + and - operations, left to right
System.out.println("nThe pay for " + name + " is " + dollars
 + " dollars and " + pennies + " cents.n");
} // end main method
} // end class
Instructions – Part A – A Linked List of Numbers
The following files are provided for download earlier in this module:
• Node.java – A simple class for linked list nodes, where each node contains a
person’s name as a String.
• LinkedList.java – Contains some simple functionality for managing a linked
list of Node objects.
• ListTest.java – Performs simple testing for some of the functionality in the
LinkedList class.
All three of these classes will be updated as part of this assignment.
Update the Node class to store one int value in each Node instance, rather than a
name.
Update the LinkedList class to be consistent with your updated Node class.
Write a new testing class that does the following:
1. Create a new (empty) list using your updated LinkedList class.
2. Call the display method to display that empty list.
3. Use the insertInOrder() method to insert six randomly selected numbers between
1 and 49. Use the Random class to help generate each of those six numbers.
4. Call the display method to display your linked list of six numbers.
Include in Part A of your submission document:
• Complete code for Node.java, LinkedList.java, and your new testing class.
• Output from running your testing class twice.
Instructions – Part B – A Doubly Linked List of Numbers
1. Turn your updated list from Part A into a doubly linked list so Nodes are linked in
both directions, forward and backward. This entails:
• Adding a “previous” pointer to each Node object, along with getPrevious() and
setPrevious() methods in the Node class;
• Adding a “tail” pointer in the LinkedList class, along with a getTail() method;
and
• Updating whatever existing methods in the LinkedList class should be
changed so the values of “tail” and the “previous” pointers will be maintained
appropriately during all actions on the LinkedList.
2. Add a new instance variable called “size” to the LinkedList class. This variable must
keep track of the number of Nodes in the list at all times.
• Update the LinkedList constructor to set this variable appropriately when a
new list is created.
• Add a getSize() method that accesses the value of this variable. (Note: It
would not be appropriate to have a mutator method for this variable.)
• Update whatever existing methods in the LinkedList class should be changed
so the value of “size” will be maintained appropriately during all actions on the
LinkedList.
3. Add the following methods to the LinkedList class. Make sure all instance variables
in the Node and LinkedList classes are handled appropriately by these methods:
• insertAtHead(int num) – Inserts a new Node with the given number at the
beginning of the list. There is no need to check whether this operation keeps
the list in sorted order, nor is there any need to check whether this operation
results in duplicate numbers in the list.
• insertAtTail(int num) – Inserts a new Node with the given number at the end
of the list. There is no need to check whether this operation keeps the list in
sorted order, nor is there any need to check whether this operation results in
duplicate numbers in the list. (NOTE: This method should not include a loop.)
• removeAtHead() – removes the first Node in the list. Returns true if
successful, false otherwise (which should only happen when attempting to
removeAtHead() from an empty list).
• removeAtTail() – removes the last Node in the list. Returns true if successful,
false otherwise (which should only happen when attempting to removeAtTail()
from an empty list). (NOTE: This method should not include a loop.)
Update your testing class from Part A to test your updated Node and LinkedList classes
as follows:
1. Keep the four testing steps described in Part A (displaying the empty list, adding
and displaying six random numbers, etc.)
2. Use insertAtHead() to insert a randomly selected number between -100 and -50
at the head of the list. (The list should now contain seven nodes.)
3. Use insertAtTail() to insert a randomly selected number between 50 and 100 at
the tail of the list. (The list should now contain eight nodes.)
4. Call the display method to display your linked list of eight numbers.
5. Loop to call removeAtHead() three times.
6. Loop to call removeAtTail() three times.
7. Call the display method to display your linked list of what should now be two
numbers.
Include in Part B of your submission document:
• Complete code for your updated Node.java, LinkedList.java, and your updated
testing class.
• Output from running your updated testing class twice.
Instructions – Part C – An Updated LotteryTicket Class
Copy all the classes you wrote for the Module 2 Assignment to a new directory.
The LotteryTicket class you created for the Module 2 Assignment includes an array of
six randomly selected numbers between 1 and 49, without duplicates.
Update this LotteryTicket class to replace that array with a linked list of six randomly
selected numbers between 1 and 49, without duplicates. Use the Node and LinkedList
classes you updated for Part B to accomplish this.
This includes updating the following components of the LotteryTicket class:
• The constructor
• getNumbers()
• toString()
• chooseRandomNumbers()
• duplicateNumber(int i)
• countWinningNumbers(LinkedList winningNumbers)
The getWinningNumbers() method of the LotteryDraw class will also need to be
updated to return a reference to a LinkedList object rather than an array reference.
Test to make sure the LotteryDrawTest class you wrote for the Module 2 Assignment
still works with your updated LotteryTicket and LotteryDraw classes.
Include in Part C of your submission document:
• Complete code for your updated LotteryTicket and LotteryDraw classes.
• Output from running LotteryDrawTest twice.
Submission Instructions
Include the following in your submission document:
Your name, student number, CS1083, Module 9 Assignment, and the date.
Complete source code and testing output for each of Sections A, B, and C as
described above.
D2L DROPBOX SUBMISSION INSTRUCTIONS
Upload only one pdf file to D2L. Do not upload separate files (such as your .java
files) as they will be ignored. Upload your submission document as follows:
1. In the top-navigation bar on the course screen, select 'Assessments' and then
'Assignments'.
2. Select the assignment title and follow the instructions to upload your submission
document.
請加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp 










 

標簽:

掃一掃在手機打開當前頁
  • 上一篇:代寫代做Project 3 - CanvasList CS 251
  • 下一篇:代做CS252編程、代寫C++設計程序
  • 無相關信息
    昆明生活資訊

    昆明圖文信息
    蝴蝶泉(4A)-大理旅游
    蝴蝶泉(4A)-大理旅游
    油炸竹蟲
    油炸竹蟲
    酸筍煮魚(雞)
    酸筍煮魚(雞)
    竹筒飯
    竹筒飯
    香茅草烤魚
    香茅草烤魚
    檸檬烤魚
    檸檬烤魚
    昆明西山國家級風景名勝區
    昆明西山國家級風景名勝區
    昆明旅游索道攻略
    昆明旅游索道攻略
  • 短信驗證碼平臺 理財 WPS下載

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 kmw.cc Inc. All Rights Reserved. 昆明網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    久久久久久精品无码人妻_青春草无码精品视频在线观_无码精品国产VA在线观看_国产色无码专区在线观看

    久久久久久久久久久久久久久国产| 可以看毛片的网址| 99中文字幕在线| 十八禁视频网站在线观看| av片在线免费| 欧美性受黑人性爽| 中文字幕色网站| 亚洲图色中文字幕| 91女神在线观看| 性生活免费在线观看| 欧美成人黑人猛交| 久草资源站在线观看| 精品这里只有精品| 男女日批视频在线观看| 国产欧美123| 日本免费黄色小视频| 欧美激情第四页| 国产成人美女视频| 亚洲一级片网站| 不卡的av中文字幕| 中文字幕线观看| 中文av字幕在线观看| 午夜剧场在线免费观看| 手机av在线网| 亚洲欧美天堂在线| 三年中文高清在线观看第6集| 中文字幕1234区| 中文字幕一区二区三区四区五区人| 99久久99精品| 久久久久久久久影视| 日本高清视频免费在线观看| 97av中文字幕| 免费国产a级片| 白嫩少妇丰满一区二区| 妓院一钑片免看黄大片| 91极品尤物在线播放国产| 在线观看免费的av| 国产xxxxhd| 被灌满精子的波多野结衣| 成年人午夜视频在线观看| 日本久久久精品视频| 91香蕉视频导航| 亚洲精品国产久| 国产欧美日韩小视频| 成人免费在线小视频| 一区二区三区免费播放| 亚洲综合20p| 黄色激情在线视频| 国产福利一区视频| 北条麻妃亚洲一区| 国产真人做爰毛片视频直播| 免费在线观看日韩视频| 怡红院亚洲色图| 波多野结衣 作品| 国产精品亚洲a| 成人性生交视频免费观看| 男女日批视频在线观看| 亚洲精品一二三四五区| 中文字幕第一页亚洲| 欧美成人免费在线观看视频| 成年人在线观看视频免费| 2021狠狠干| 成人在线看视频| 国内av免费观看| 大陆极品少妇内射aaaaa| 777视频在线| 97超碰在线人人| 手机av在线免费| 福利视频一二区| 国产美女18xxxx免费视频| 日本黄色片一级片| 一个色综合久久| 国产免费黄视频| 在线观看免费视频污| av免费观看网| 亚洲小说欧美另类激情| 大香煮伊手机一区| 亚洲乱码日产精品bd在线观看| 精品久久久久久久无码| 成人一级生活片| 亚洲最大天堂网| 国产一区二区三区精彩视频| 99999精品| 免费黄色特级片| 日韩极品视频在线观看| 精品久久久99| 欧美成人黑人猛交| 97在线国产视频| 一区中文字幕在线观看| 爱情岛论坛亚洲首页入口章节| 国产在线xxxx| 亚洲精品国产久| 色七七在线观看| 午夜精品久久久久久久无码| www.-级毛片线天内射视视| 日韩av片网站| 国产极品尤物在线| 久久精品无码中文字幕| 中文字幕色网站| 亚洲国产高清av| 激情六月丁香婷婷| www.日本在线播放| 波多野结衣 作品| 成人免费黄色av| 手机av在线免费| the porn av| 黄色高清无遮挡| 日韩在线一级片| 亚洲熟妇国产熟妇肥婆| 国产精品无码免费专区午夜| 99精品一级欧美片免费播放| 久久久久久久久久久久久久久国产 | 日韩毛片在线免费看| 国产免费黄色一级片| 大陆极品少妇内射aaaaaa| 91视频福利网| www.色欧美| 一本色道久久亚洲综合精品蜜桃 | www.99r| 三级a三级三级三级a十八发禁止| 37pao成人国产永久免费视频| 777av视频| 日韩欧美视频网站| 成熟了的熟妇毛茸茸| 国产91在线免费| 国产又大又硬又粗| av免费在线播放网站| 欧美大片在线播放| 中国丰满人妻videoshd| 精品国产免费av| 成年人观看网站| 狠狠操精品视频| www.com黄色片| www激情五月| 在线观看污视频| 久无码久无码av无码| ww国产内射精品后入国产| 狠狠97人人婷婷五月| 日本三区在线观看| 国模私拍视频在线观看| 91大神免费观看| 无码熟妇人妻av在线电影| 久色视频在线播放| 国产三级三级三级看三级| 小明看看成人免费视频| 国产高清精品软男同| 成年人网站国产| 国产精品动漫网站| 在线观看免费av网址| 神马午夜伦理影院| 欧美一级视频免费看| 欧美成人免费高清视频| 五月婷婷之婷婷| 青青草视频国产| 国产男女在线观看| 九九热免费在线观看| 51xx午夜影福利| 黄色一级片播放| 免费一区二区三区在线观看| 妞干网这里只有精品| 国产美女无遮挡网站| www午夜视频| 国产夫妻自拍一区| 欧美黑人又粗又大又爽免费| 爽爽爽在线观看| www国产精品内射老熟女| 中文字幕66页| 奇米影视亚洲色图| 日本黄大片一区二区三区| 一二三四中文字幕| 国产精品少妇在线视频| 超碰在线超碰在线| 成人毛片一区二区| 三级一区二区三区| 9久久9毛片又大又硬又粗| 女人高潮一级片| 欧美精品99久久| 日韩欧美色视频| 精品中文字幕av| 日本特级黄色大片| wwwxxx黄色片| 日韩中文在线字幕| 午夜激情福利在线| 国产资源在线免费观看| 久国产精品视频| 国产日产欧美视频| 成年丰满熟妇午夜免费视频| 日本免费观看网站| 久草视频国产在线| 中文字幕55页| 中文久久久久久| 黄色一级片在线看| av动漫免费观看| 蜜臀视频一区二区三区| 97在线免费视频观看| 欧美成人福利在线观看| 成人免费在线小视频| 欧美 日韩 国产精品| 亚洲欧美手机在线| 91蝌蚪视频在线观看|