Fork me on GitHub

  2013年1月28日
摘要: VC6.0调试大全VC调试方法大全一、调试基础调试快捷键F5:开始调试Shift+F5:停止调试F10:调试到下一句,这里是单步跟踪F11:调试到下一句,跟进函数内部Shift+F11:从当前函数中跳出Ctrl+F10:调试到光标所在位置F9:设置(取消)断点Alt+F9:高级断点设置跟踪调试1、尽量使用快捷键时行调试2、观察调试信息3、高级中断设置异常调试重试->取消->调试函数堆栈,用variables或者callstack窗口Release调试1、经常测试你的Debug和Release版本2、不要移除调试代码,如用ASSERT,TRACE等。3、初始化变量,特别是全局变量,m 阅读全文
posted @ 2013-01-28 16:27 huashiyiqike 阅读(513) 评论(0) 推荐(0) 编辑
摘要: 题目89:Prime ring problem时间限制:2 秒内存限制:128 兆特殊判题:否提交:54解决:12题目描述:A ring is compose of n circles as shown in diagram. Put natural number 1, 2, ..., n into each circle separately, and the sum of numbers in two adjacent circles should be a prime.Note: the number of first circle should always be 1.输入:n (1 阅读全文
posted @ 2013-01-28 14:48 huashiyiqike 阅读(183) 评论(0) 推荐(0) 编辑