06 2021 档案

BusyBox for Windows
摘要:Download busybox-w32 BusyBox is a single binary that contains many common Unix tools. It's often found in embedded Linux systems like routers, in Andr 阅读全文

posted @ 2021-06-19 05:53 acd407 阅读(991) 评论(0) 推荐(1) 编辑

Win32控制台彩色字符输出
摘要:我记得,原则上,Win32控制台不支持任何ANSI颜色.方法之一是用Console API实现. 1. Console API BOOL WINAPI SetConsoleTextAttribute( _In_ HANDLE hConsoleOutput, // 控制台输出流句柄 _In_ WORD 阅读全文

posted @ 2021-06-18 09:52 acd407 阅读(405) 评论(0) 推荐(0) 编辑

CMD的控制字符输出
摘要:CMD的控制字符输出 1 #include<stdio.h> 2 int main() 3 { 4 int i; 5 for(i=0;i<256;i++) 6 printf("%d:%c\t",i,i); 7 return 0;; 8 } 输出 阅读全文

posted @ 2021-06-18 09:00 acd407 阅读(405) 评论(1) 推荐(0) 编辑

九九乘法表
摘要:C: 1 #include<stdio.h> 2 #include<conio.h> 3 int main() 4 { 5 int i,j; 6 for(i=1;i<=9;i++) 7 { 8 for(j=1;j<=i;j++) 9 { 10 printf("%d*%d=%d\t",j,i,j*i) 阅读全文

posted @ 2021-06-17 21:21 acd407 阅读(43) 评论(0) 推荐(0) 编辑

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示