2
//Declaring variables
    int level;
    int strBonus, dexBonus, conBonus, _intBonus, wisBonus, chaBonus;

    //Initializing
    conBonus = 0;
    String choice = null;

Do I have to put these as the functional requirements.What are exactly the functional requirements

Night Programmer
  • 341
  • 5
  • 25
Samasha
  • 369
  • 1
  • 5
  • 16
  • https://stackoverflow.com/questions/16475979/what-is-the-difference-between-functional-and-non-functional-requirement – Night Programmer Apr 06 '18 at 05:25
  • **No**. Functional requirements are simple; ***what*** should the thing do? For example, the functional requirement of a shoe is that it protects your foot; that might be a sandal or a sneaker. Functionally though... – Elliott Frisch Apr 06 '18 at 05:25
  • That means i have to add prompting from the user and calculation stuff only right?? – Samasha Apr 06 '18 at 05:33

1 Answers1

0

Functional requirements define what the system or application will do - specifically in the context of an external interaction (with a user, or with another system).

When placing a new order, the system shall display the total cost and require confirmation from the user. That is a functional requirement; it describes a function of the system.

refer Wiki

Night Programmer
  • 341
  • 5
  • 25