|
|
楼主 |
发表于 2007-5-9 14:03:32
|
显示全部楼层
BSA104 Business Programming1 R8 F5 J; G: s
Shanghai - 2007* R9 ?4 h9 h% Q, _, q2 S7 n
Assignment 2
6 }% a$ D- X( H7 XDeadline for Submission: 10:00 pm (Shanghai time), Tuesday 15th May 2007 Assessment Weighting: 20% of the total assessment for BSA104 Assignment Type: Individual Scenario: The teaching staff at a nearby university are concerned that some of their students are submitting other students‟ work. They need a simple Java program that will compare the text of two other Java programs, line by line, for equality, and then print out the results, and a recommendation. Requirements: Consider the three Java Classes: ProgramCompareMenu.java, ProgramCompare.java and AuthorisedUsers.java, available from the Assignment 2 page on Vista. You are required to perform the following tasks: The ProgramCompareMenu class: (Total maximum 20 marks available)
* B' ]5 Z8 u8 n/ t1 A1. Provide a basic text-based menu interface to the ProgramCompare class so that it can be used by two staff members to determine if the two supplied Java programs are the same or similar.
4 @" r' P& ?+ C: z! f: Q7 @( LThe staff must be able to:
. u' a: {# g9 d# | Log on to the „system‟ using their user name, and a Personal Identification Number (PIN) which is a four digit number **.
# I5 I0 k/ A" y! {$ ]" ]6 ]1. The user should not be able to use the „system‟ until they have provided the correct user name and PIN combination. You should give them a second or third chance to get it right before shutting the „system‟ down.
! |! G: P4 q |! l7 ]) | The interface should provide a menu so that the staff can:
1 B5 K8 v1 K5 Z+ o2 Za) Enter the names of the two Java program files to be compared, `5 i& J9 G! P2 V
 For this assignment, it will be assumed that the two Java program files are in the same folder as your program.
. A6 l0 @1 Q# m% _7 k$ ^** You must use the two user names and PINs provided in your individual data available from the Assignment 2 page on Vista (see requirement 5 below). The user names and PINs should be included in your code, and the output to the screen should prompt the user with the user names and passwords (for marking purposes).; } H- Z+ I N) Q0 M9 Z* s
BSA104 Business Programming – 2007: Assignment 2
& s/ b/ R* c/ K# a6 }Page 2 of 5: y4 m' u$ R; o8 @0 [
b) Print out to the screen all the lines of code that are the same& {& J- {5 F; P9 o8 m
 Include the name of the file and the line number of the code being printed for each of the two files2 B; O9 R" s# Z4 x) p) \
c) Print out to the screen all the available information regarding the evaluation of the two Java program files being compared' d. G s/ g6 U
 the name, username and department of the user- F* k. p, b: R$ A; V
 the statistics of the comparison
- ^* Z; j* x5 _2 i2 Y0 @% X- For example: the number of lines of code checked, the number of lines the same, the number of lines that are different
8 J5 h) g1 Z: q) Y7 Q the recommendation for further checking
3 u8 F/ z; @' W1 A& j2 R7 d Q8 [# ?4 F: h- For example: if more than 5 (five) lines of code are the same in each Java program file, then print a recommendation to the screen that the staff member check the files more closely
, K4 N$ Z% h0 v/ k$ ^9 Y the names of the two files compared
7 C! \7 Y. d/ O# id) Leave the program (exit)
% ~% F1 _' U" Q. V$ _) V' Q3 TThe ProgramCompare class: (Total maximum 20 marks available)
% C; Q- p. O; O0 F2. Provide a method/s to read in each line of code from the two files identified by the user: (assumed that the two Java program files are in the same folder as your program)
( I. p' Z: f8 F. d+ ]" Ha) provide an error message if the files are not found or there is a problem opening them' ?1 _" ?, D. e. b7 n" @4 V
b) compare each line of code0 g% {# Y8 W# \, O0 |' G4 L3 p
c) print out the lines that are the same$ o/ Y$ h$ J- |1 n- E; P' z2 W9 q
d) count the number of lines compared / lines the same6 z0 `* x$ p% X( f4 ?
The AuthorisedUsers class: (Total maximum 20 marks available)& G* V3 G( c: Y1 K+ H
3. Provide an object that contains the name, username, PIN, and Department of the authorised users of the program (user names and PINs as provided in your individual data - see requirement 5 below)
/ N/ q0 R- j0 @3 X0 S4 V4. Provide methods to:
% K8 J9 I5 h8 ?9 [# ?, Aa) compare the stored username and PIN with the one entered by the user - return a value that indicates whether they match or do not match$ S+ B3 K8 |+ M. V
b) return the name of the authorised user
; q7 T3 Y }6 f- Oc) return the name of the department of the authorised user
1 V( g, n' U: [8 S! u G, mIndividual Data (Maximum 20 marks available)
9 m4 _# u8 b8 l' d9 L/ Q, L5. You will be given two staff member names, usernames, PINs, and department name, plus a set of two Java program files to compare using your program. You will need to log onto the BSA104 Assignment 2 page on Vista to generate your individual data and instructions for this requirement. You will need to use your University of Tasmania (UTas) student number.- n/ W2 i: c# D N& G
Documentation (Maximum 10 marks available)6 Q( R& p8 [% j1 Z8 q( J& |
6. Your program files should be fully documented, at least to the same standard as demonstrated in the textbook. This includes in-code comments, descriptions, and where appropriate, explanations for each new constructor, method and variable.
4 w* ?! V2 l+ q# `0 ZBSA104 Business Programming – 2007: Assignment 2
' q- V& y: d# c0 N r$ C+ p: Y6 g0 \' vPage 3 of 5 |
|