上一页 1 2 3 4 5 6 7 8 9 ··· 16 下一页
摘要: 1.windows-->Preferences-->Java --> Editor-->Save Actions2.勾选“Perform the selected actions on save(其他选项根据需要自己选择或者配置) 阅读全文
posted @ 2025-01-02 18:07 Grit_Doyle 阅读(46) 评论(0) 推荐(0)
摘要: 实现电脑同时登录两个微信账号: ‌1.使用回车键双击微信图标‌:在按住键盘上的回车键的同时,双击桌面上的微信图标,然后立刻松开回车键。但这种方法可能无法精确控制打开的微信窗口数量,有时可能会打开过多的窗口,导致电脑卡顿甚至死机。‌ ‌2.使用bat命令‌:新建一个文本文档,并粘贴特定的命令,该命令会 阅读全文
posted @ 2025-01-02 16:33 Grit_Doyle 阅读(423) 评论(0) 推荐(0)
摘要: // 学生信息录入系统2.0 #include<stdio.h>#include<string.h>#include<stdlib.h>#include<time.h>#include<conio.h>#include<Windows.h>#include<process.h> #define Ma 阅读全文
posted @ 2025-01-02 16:18 Grit_Doyle 阅读(38) 评论(0) 推荐(0)
摘要: #include<stdio.h> //stdio.h 头文件定义了三个变量类型、一些宏和各种函数来执行输入和输出#include<stdlib.h> //stdlib .h 头文件定义了四个变量类型、一些宏和各种通用工具函数#include<windows.h> // 获取控制台窗口句柄 微软官方 阅读全文
posted @ 2025-01-02 16:17 Grit_Doyle 阅读(14) 评论(0) 推荐(0)
摘要: #include<stdio.h>#include<string.h>void fsort(char*color[],int n);int main(){ int i; char*pcolor[]={"red","blue","yellow","green","black"}; fsort(pcol 阅读全文
posted @ 2025-01-02 16:12 Grit_Doyle 阅读(12) 评论(0) 推荐(0)
摘要: #include<stdio.h>int main(int argc,char*argv[]){ int k; for(k=1;k<argc;k++){ printf("%s",argv[k]); } printf("\n"); return 0;} 阅读全文
posted @ 2025-01-02 16:12 Grit_Doyle 阅读(13) 评论(0) 推荐(0)
摘要: #include<stdio.h>int main(){ int i; char*poem[4]={"一叶轻舟向东流,","帆梢轻握杨柳手,","风纤碧波微起舞,","顺水任从雅客悠。"}; char mean[10]; for(i=0;i<4;i++){ mean[2*i]=*(poem[i]); 阅读全文
posted @ 2025-01-02 16:12 Grit_Doyle 阅读(26) 评论(0) 推荐(0)
摘要: #include<stdio.h>int main(){ int a=10; int *p=&a; int **pp=&p; printf("a=%d *p=%d **pp=%d\n",a,*p,**pp); printf("&a=%d p=%d *pp=%d\n",&a,p,*pp); print 阅读全文
posted @ 2025-01-02 16:11 Grit_Doyle 阅读(15) 评论(0) 推荐(0)
摘要: #include<stdio.h>void fsort(int a[],int n);int main(void){ int i; int a[5]={6,5,2,8,1}; fsort(a,5); for(i=0;i<5;i++){ printf("%d",a[i]); } return 0;}v 阅读全文
posted @ 2025-01-02 16:11 Grit_Doyle 阅读(25) 评论(0) 推荐(0)
摘要: #include<stdio.h>#include<string.h>int main(){ int i; char *color[5]={"red","blue","yellow","green","black"}; char str[20]; printf("Input a color:"); 阅读全文
posted @ 2025-01-02 16:11 Grit_Doyle 阅读(12) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 16 下一页