摘要: #include //反转字符串 char *reverse(char *s) { char temp; char *p = s; //p指向s的头部 char *q = s; //q指向s的尾部 while(*q) ... 阅读全文
posted @ 2015-12-10 11:36 Tovi 阅读(360) 评论(0) 推荐(0) 编辑
摘要: Division Write a program that finds and displays all pairs of 5-digit numbers that between them use the digits 0through 9 once each, suc... 阅读全文
posted @ 2015-12-10 11:34 Tovi 阅读(163) 评论(0) 推荐(0) 编辑