/****************************************************************************
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 \n",a,b,c,d);

  return 0;
}

相关文章:

  • 2021-08-21
  • 2022-12-23
  • 2021-04-11
  • 2022-12-23
  • 2021-12-06
猜你喜欢
  • 2022-12-23
  • 2021-12-05
  • 2021-11-20
  • 2021-11-20
  • 2021-08-05
  • 2022-12-23
相关资源
相似解决方案