摘要: #include int is_leap_year(int year){ return (!(year % 4) && year % 100 || !(year % 400)) ? 1 : 0;}int main(){ int test_case[] = {1900, 1994, 199... 阅读全文
posted @ 2015-03-14 16:37 AirJason 阅读(204) 评论(0) 推荐(0) 编辑
摘要: Software Testing软件测试参考书目:《软件测试教程》宫云战软件测试分为两种:黑盒测试 和 白盒测试在c语言中,include 'x.h'和include 的区别:前者是在当前目录下寻找,后者是在library下寻找 阅读全文
posted @ 2015-03-14 13:41 AirJason 阅读(174) 评论(0) 推荐(0) 编辑