zoukankan      html  css  js  c++  java
  • 华为代码注释标准

    /****************************************************************************
    File name:    count.c
    Directory:     /home/luo/myfile/c/20161114/
    Author:         lijing
    Description:
          1、运算符使用
          2、运算符总结
          3、打印
    Others: 暂无说明
    History:

          1、添加打印功能
          Date:               2016-11-14 AM 10:50
          Author:            lijing
          Modification:   添加打印功能

          2、修改打印功能
          Date:              2016-11-14 PM 13:15
          Author:           lijing
          Modification:  修改打印功能,实现了参数传递

    ******************************************************************************/
    #include <stdio.h>

    int main(void)
    {
           int a;
           int b;
      int c;
      int d;
      a = 17;
      b = 4;
      c = a/b;
      d = a % b;
      ++a;

      a++;

      printf("a = %d, b=%d, c=%d, d=%d ",a,b,c,d);

      return 0;
    }

  • 相关阅读:
    opengl打开本地bmp图片绘制
    jsp连接mysql数据库
    opengl雾开启
    opengl多重采样
    抗锯齿说
    opengl混合效果
    android实现视频图片取缩略图
    opengl Test
    动态规划算法(@背包问题)
    百钱买百鸡的问题(递归解法)
  • 原文地址:https://www.cnblogs.com/herd/p/6061631.html
Copyright © 2011-2022 走看看