1

How to write CSE

  • Confirm the Requests First

    Making sure you know all the requirements is really important to ensure that your program is right
  • Choose right methods to write in the second

    Programmers should always choose the fastest way to write the program. For example, if we want to calculate 1+1+1, we will use 1*3 instead of + to save some time
  • Check the results that your program returned at the end

    The right result is the most important thing in writing CSE programs, if the result is the same as the sample provided, then the program is right.