#include<stdio.h>

int int_min()
{
    int i=0;
    int j=0;
    while(i>=j)
    {
        i=j;
        j--;
    }
    printf("%d\n",i);
    return 0;
}
int int_max()
{
    int i=0;
    int j=0;
    while(i<=j)
    {
        i=j;
        j++;
    }
    printf("%d\n",i);
    return 0;
}
int main()
{
    int_max();
    int_min();

  return 0;

}

最新文章

  1. PHP设计模式(四)单例模式(Singleton For PHP)
  2. ASP.Net请求处理机制初步探索之旅 - Part 3 管道
  3. js ShowDialogModal 关闭子页面并刷新父页面,保留查询条件
  4. 折腾一天的WordPress
  5. 夺命雷公狗---在js里阻止a标签的跳转和form表单的跳转
  6. 索引服务混战ASP.NET――微软的又一个隔离墩
  7. 前端必杀技之Javascript 第1天
  8. iOS推送证书p12转成pem
  9. ubuntu 使用第一天
  10. 我和 flow.ci 的第一次亲密接触
  11. mitmproxy,mitmdump
  12. npm 镜像源替换为淘宝镜像
  13. C#List源码
  14. [转帖]CR3,PDE,PTE,TLB 内存管理的简单说明
  15. 【Code Chef】April Challenge 2019
  16. java之定时任务
  17. PHP中的插件机制原理和实例
  18. 使用终端执行.app程序 for mac
  19. Spring面试,IoC和AOP的理解, @Transactional原理及使用
  20. Asp.Net使用加密cookie代替session验证用户登录状态 源码分享

热门文章

  1. 《Maven实战》笔记-9-版本管理
  2. 【Java学习】Java迭代器
  3. Dapper --Execute
  4. Windows Services windows服务如何删除服务
  5. eclise远程调试
  6. mysql查询不区分大小写
  7. B君的第九题
  8. php http 缓存(客户端缓存)
  9. python编程技巧
  10. pytorch批训练数据构造