摘要: 嘻嘻,随便一记 1.冒泡排序 #include <stdio.h> int main() { int num[]={21,3,89,7,10}; int i,j,temp; for (i = 0; i < 4; ++i) { for(j = i+1;j<5;++j ){ if(num[i] > nu 阅读全文
posted @ 2020-03-11 15:28 sunseeker 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 1.clion安装地址 https://www.jetbrains.com/clion/ 2.MinGW安装 总地址: https://sourceforge.net 具体下载地址:https://sourceforge.net/projects/mingw-w64/files/Toolchains 阅读全文
posted @ 2020-03-11 14:10 sunseeker 阅读(2611) 评论(0) 推荐(0) 编辑