上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 35 下一页
摘要: /* --生成随机数的函数(返回一个0~32768的伪随机数)*/ static unsigned long int next = 1; //种子 unsigned int rand0() { /* 生成伪随机数的魔术公式*/ next = next * 1103515245 + 123456; r 阅读全文
posted @ 2021-07-12 16:27 学而不思则罔! 阅读(117) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdlib.h> int value1 = 100; //文件作用域、外部链接、静态存储期 int static value2 = 99; //文件作用域(仅限翻译单元)、内部链接、静态存储期 void isOk(); void isOk1 阅读全文
posted @ 2021-07-12 15:22 学而不思则罔! 阅读(59) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdlib.h> void isOk(); int main() { isOk(); isOk(); isOk(); int index; return 0; } void isOk() { int index ; static int c 阅读全文
posted @ 2021-07-10 16:22 学而不思则罔! 阅读(122) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdlib.h> int main() { const char *pt = "abcdef"; /* 1.abcdef字符串字面量对象 2.字符数组对象(单个元素也是对象) 3.标识符为pt的对象,存储字符串的地址 const 修饰的是字 阅读全文
posted @ 2021-07-09 20:13 学而不思则罔! 阅读(52) 评论(0) 推荐(0)
摘要: 待补充 阅读全文
posted @ 2021-07-08 16:46 学而不思则罔! 阅读(29) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdlib.h> int main() { char * spt = " 1100100.1111end...."; printf("将字符串%s转成数值类型: 2int:%d 2long:%ld 2double:%f\n", spt, a 阅读全文
posted @ 2021-07-08 16:42 学而不思则罔! 阅读(290) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <string.h> int main(int argc,char * arr[]) { //当前脚本的输入参数的计数 printf("当前脚本输入的个数为:%d\n",argc ); //接收的参数内容为,只能接受字符串,用空白符分割,格式为 阅读全文
posted @ 2021-07-08 08:54 学而不思则罔! 阅读(80) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <string.h> int main() { char str[] = "mnbvcxzlkjhgfdsapoiuytrewq"; int size = strlen(str); int index = 0; for (int i = siz 阅读全文
posted @ 2021-07-06 12:27 学而不思则罔! 阅读(139) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <string.h> int * getarr(int * ipt); int main() { int a = 99; char * ch ; int *p = getarr(&a); //gets(ch); printf("%d\n", * 阅读全文
posted @ 2021-07-02 20:04 学而不思则罔! 阅读(227) 评论(0) 推荐(0)
摘要: #!/usr/bin/python # -*- coding: UTF-8 -*- #get_min_char 获取指定字符串中最小的字符 def get_min_char(str): min = str[0]; for ch in str: if( min > ch ): min = ch ret 阅读全文
posted @ 2021-07-02 15:59 学而不思则罔! 阅读(31) 评论(0) 推荐(0)
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 35 下一页