上一页 1 2 3 4 5 6 7 ··· 188 下一页
摘要: 阅读全文
posted @ 2025-12-09 05:29 myrj 阅读(6) 评论(0) 推荐(0)
摘要: Excel 2007及之后的版本,最多能保存‌1,048,576行‌。这个数字是2的20次方,是微软为了与计算机底层二进制高效协同而设定的。 如果你用的是更早的Excel 2003,行数上限是65,536行。想知道你的Excel版本,可以按Ctrl+↓看看最后一行是几。 阅读全文
posted @ 2025-12-07 07:02 myrj 阅读(26) 评论(0) 推荐(0)
摘要: WIN10 安装了python314idle,双击.py文件不能自动选择idle打开,如何解决 右键任意.py文件 → 选择“属性” → 点击“打开方式”后的“更改” 选择“更多应用” → “在这台电脑上查找其他应用” 导航至Python安装目录(如C:\Python314\Lib\idlelib) 阅读全文
posted @ 2025-11-30 07:29 myrj 阅读(27) 评论(0) 推荐(0)
摘要: WIN10桌面上自定义的快捷方式,如何放置固定到开始菜单 打开资源管理器,打开桌面,找到对应的快捷方式,右击,选择:固定到开始 即可 阅读全文
posted @ 2025-11-30 07:22 myrj 阅读(16) 评论(0) 推荐(0)
摘要: cap:mkdir 0119h cd "F:\BaiduNetdiskDownload\1973~2024 年降水量面板数据(含栅格数据)\区县" fs *.xlsx local ci=0 foreach file in `r(files)'{ import excel "`file'", shee 阅读全文
posted @ 2025-11-21 08:54 myrj 阅读(5) 评论(0) 推荐(0)
摘要: 新农合:微信小程序 山东税务社保费缴纳--居民医保 阅读全文
posted @ 2025-11-02 10:16 myrj 阅读(12) 评论(0) 推荐(0)
摘要: #include <stdio.h> main() { int a=1,i,j=10000,m=0,n; for(j=10000;j>=0;j--) { m=0; n=j; for(i=1;i<=9;i++) n=n/2-1; if(n==1){ m=1;break; } } } getch(); 阅读全文
posted @ 2025-10-16 19:25 myrj 阅读(9) 评论(0) 推荐(0)
摘要: #include <stdio.h> int main() { int i = 1, sum = 0; while (i <= 100) { sum += 【1】 } printf("1加到100的和为:%d\n", sum); return 0; } #include <stdio.h> int 阅读全文
posted @ 2025-09-23 11:18 myrj 阅读(335) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/Edward1027/article/details/139512230?utm_medium=distribute.pc_relevant.none-task-blog-2~default~baidujs_baidulandingword~default 阅读全文
posted @ 2025-09-04 19:00 myrj 阅读(22) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <string.h> main() { char zf[100]; int upper=0,lower=0,number=0,other=0,a; gets(zf); for(a=0;a<strlen(zf);a++) { if(zf[a]>= 阅读全文
posted @ 2025-09-02 17:07 myrj 阅读(24) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 188 下一页