摘要: http://www.cooool.live:8011/wordpress/wp-content/uploads/2024/02/开发Twain协议X64虚拟扫描仪.zip 阅读全文
posted @ 2024-02-23 15:10 過朢 阅读(85) 评论(0) 推荐(0)
摘要: string SName = TextBox1.Text.Trim(); WebClient client = new WebClient();//需要先请求接口 //把接口转换成byte数据流 Byte[] byteTest = client.DownloadData("https://resta 阅读全文
posted @ 2024-02-23 14:31 過朢 阅读(76) 评论(0) 推荐(0)
摘要: int[] a = { 1, 8, 3, 6, 9, 4 }; for (int i = 0; i < a.Length-1; i++) { for (int j = 0; j < a.Length-i-1; j++) { if (a[j]>a[j+1]) { int temp = a[j]; a[ 阅读全文
posted @ 2024-02-23 14:29 過朢 阅读(9) 评论(0) 推荐(0)
摘要: int[] a = { 1, 8, 3, 6, 9, 4 }; for (int i = 0; i < a.Length-1; i++) { for (int j = 0; j < a.Length-i-1; j++) { if (a[j]>a[j+1]) { int temp = a[j]; a[ 阅读全文
posted @ 2024-02-23 14:28 過朢 阅读(11) 评论(0) 推荐(0)
摘要: for (int i = 1; i <= 9; i++) //外层循环控制行数 { for (int j = 1; j <= i; j++) //内层循环每行的个数 { Console.Write(j + "*" + i + "=" + i * j +"\t"); } Console.WriteLi 阅读全文
posted @ 2024-02-23 14:26 過朢 阅读(82) 评论(0) 推荐(0)