您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

11 行
132 B

  1. // main.c
  2. #include <stdio.h>
  3. int main(void)
  4. {
  5. int speed = 200;
  6. printf("motor start speed = %d\n", speed);
  7. return 0;
  8. }