上一页 1 2 3 4 5 6 7 8 ··· 13 下一页
摘要: 阅读全文
posted @ 2020-11-18 16:49 Connor_Jiao 阅读(54) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> //2020年11月18日16:18:49 // int main(void) { char ch='a'; int i=99; double x=66.6; char * p=&ch; int * q=&i; double * r=&x; printf("%d, 阅读全文
posted @ 2020-11-18 16:23 Connor_Jiao 阅读(328) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> void f(int *pArr,int len) { int i; for(i=0;i<len;i++) { printf("%d\n",*(pArr+i)); printf("%#X\n",pArr+i); } } int main(void) { int a 阅读全文
posted @ 2020-11-18 11:12 Connor_Jiao 阅读(204) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> void huhuan_1(int,int); void huhuan_2(int *,int *); void huhuan_3(int *,int *); int main(void) { int a=3,b=5; //huhuan_1(a,b); //huh 阅读全文
posted @ 2020-11-18 10:31 Connor_Jiao 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 转载https://blog.csdn.net/weixin_41126303/article/details/89843381?utm_medium=distribute.pc_relevant.none-task-blog-title-14&spm=1001.2101.3001.4242 阅读全文
posted @ 2020-11-17 16:38 Connor_Jiao 阅读(229) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> //2020年11月16日22:15:18 //本函数的功能是:判断m是否是素数,是返回true,不是返回false bool isprime(int m) { int i; for(i=2;i<m;i++) { if(m%i==0) break; } if(i 阅读全文
posted @ 2020-11-16 21:51 Connor_Jiao 阅读(303) 评论(0) 推荐(0) 编辑
摘要: 判断一个数字是不是素数,看能否被2~val-1的数整除,如果能被整除证明此数不是素数,反之则是素数。 代码中使用到了布尔类型,同时复习一下函数的使用和break的用法。 #include <stdio.h> bool isprime(int val) { int i; for(i=2;i<val;i 阅读全文
posted @ 2020-11-16 20:29 Connor_Jiao 阅读(626) 评论(0) 推荐(0) 编辑
摘要: 在控制系统中,稳定的闭环系统的重要性不言而喻。如果系统受到外界干扰作用,系统运动趋向于发散,这将会是个灾难!在经典控制理论中,系统的稳定性判据包括劳斯判据、根轨迹法以及奈奎斯特判据。在现代控制理论以及非线性控制中,李雅普诺夫稳定性判据起着非常重要的作用。 李雅普诺夫定义了三种稳定性,分别是李雅普诺夫 阅读全文
posted @ 2020-10-18 13:34 Connor_Jiao 阅读(2670) 评论(0) 推荐(0) 编辑
摘要: 转载于CSDNLiiiiiiiiiiiiiiiiiiq大佬,原地址:https://blog.csdn.net/qq_36760780/article/details/80092665?utm_medium=distribute.pc_relevant_t0.none-task-blog-BlogC 阅读全文
posted @ 2020-09-15 15:49 Connor_Jiao 阅读(3001) 评论(0) 推荐(0) 编辑
摘要: https://www.eet-china.com/mp/a26524.html?utm_source=EETC%20Forum%20Alert&utm_medium=Email&utm_campaign=2020-09-09 阅读全文
posted @ 2020-09-09 10:41 Connor_Jiao 阅读(425) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 13 下一页