摘要: 数组的逆序 思想是第一个和最后一个,第二个和倒数第二个 字符串逆序, 目前只能应用于中间带空格的英文字符串 阅读全文
posted @ 2019-01-30 16:16 saintdingtheGreat 阅读(178) 评论(0) 推荐(0) 编辑
摘要: rand() 指定随机数的生成范围例如生成8以内的随机数 只不过....程序每次运行时都是生成这几个货 #include <stdio.h>#include <stdlib.h>#include <time.h>int main(){ srand((unsigned)time(NULL)); for 阅读全文
posted @ 2019-01-30 14:29 saintdingtheGreat 阅读(148) 评论(0) 推荐(0) 编辑