2019-08-01 Software Engineering summary

Video Summary:

Title: Programming with C language

Part I: computers and programming languages

Computer problem-solving mode, language and brief introduction of computer binary instructions a computer's way of thinking, two ways to program execution.

The second part: C language

Select the C language of reason, C language different from other languages, C language development process, C language application programming software is recommended.

Part III: First Program

Dev C ++ programming software How to download and install, to explain the first program (hello world!) Of the preparation process and the preparation of some of the symbols.

 

Topic Summary:

Yesterday job template:

#include <stdio.h>

 

int main ()

{

  printf("Hello World!\n");

 

  return 0;

}

Programming fixed format:

#include <stdio.h>

 

int main ()

{

}

I work yesterday submitted a total of four times, the first successful, but found each student program code written in different lengths, so the following experiment.

Last Summary: in some places the distance is reduced, some inter-character spacing can be cut to shorten the code.

 

Good style program: I think it should comply with the basic requirements of the following points: 1. Simple 2. 3. easy to understand and accurate expression

Guess you like

Origin www.cnblogs.com/woju/p/11285024.html