HSYD100-1 Formative Assesment 3
HSYD100-1 Formative Assesment 3
ID:0211105136082
Email: [email protected]
Systems Development(HSYD100-1)
Formative Assessment 3
Question 1
1.1
package com.mycompany.javaassignment;
/**
*
* @author mrjas
*/
public class JavaAssignment {
1.2
package com.mycompany.javaassignment;
import java.util.Scanner; // We are importing this scanner to get the users input
/**
*
* @author mrjas
Public class DietTracker {
Public static void main(String[] args) {
//Create a Scanner Object to read input from the user
Scanner scanner = new Scanner(System.in);
Question 2
2.1
package com.mycompany.javaassignment;
/**
*
* @author mrjas
*/
public class FitnessStore {
2.2