goldshakil / ElectricalProgrammingCourse2020

This repository is aimed towards sharing and discussing issues about Electrical and Electronics Programming Course
6 stars 1 forks source link

[Others] Final project #304

Open gitstu1 opened 4 years ago

gitstu1 commented 4 years ago
  1. can i use _getch()? it should not need enter. just pressing a key also responds without an enter.

  2. : in guideline, /there are some global inputs defined (B back, E exit, M main), those inputs whenever they are pressed inside any windows of the program at any time they should do their tasks./

it means when the program need to receive some value, , "B","E","M" also work??( e.g. in student screen, student name receive enter student name:M means go to main screen? ) I'm confused because the mention in guidelines ("Except where mention to enter specific data type input") 1234

goldshakil commented 4 years ago
  1. this will make TAs confused while evaluating. Please make sure to use normal functions which only work after you hit enter

  2. "("Except where mention to enter specific data type input")" forget about this line. the whole idea of the global inputs is that : on any screen (student /professor/ main...) B E M should work! "it means when the program need to receive some value, , "B","E","M" also work??( e.g. in student screen, student name receive enter student name:M means go to main screen?" Yes that is exactly what this means