|
liuyun20
初级用户
 
积分 36
发帖 14
注册 2007-3-4
状态 离线
|
『第 46 楼』:
顶三楼了 ....
使用 LLM 解释/回答一下
说的太好了.
感谢...
That's really great. Thanks...
|
|
2007-10-7 10:50 |
|
|
VAF
中级用户
  
积分 242
发帖 134
注册 2006-12-11
状态 离线
|
|
2007-10-8 04:28 |
|
|
XinStar
初级用户
 
积分 30
发帖 11
注册 2007-6-30
状态 离线
|
『第 48 楼』:
使用 LLM 解释/回答一下
确实很好,感觉自己想老了一样,,,都看不懂了,,,慢慢消化吧,,,
It's really good. It feels like I've become old... I can't understand it anymore... Just digest it slowly...
|
|
2007-10-25 22:04 |
|
|
qunhui
新手上路

积分 12
发帖 6
注册 2007-12-16 来自 湖南省
状态 离线
|
『第 49 楼』:
使用 LLM 解释/回答一下
虽然不是很懂...但还是顶了
Although I don't quite understand... but I still support it
|
|
2007-12-16 11:15 |
|
|
maclover815
初级用户
 
积分 92
发帖 47
注册 2007-12-7
状态 离线
|
|
2007-12-18 22:28 |
|
|
DarksKy1984
初级用户
 
积分 46
发帖 24
注册 2008-1-4
状态 离线
|
|
2008-1-8 00:17 |
|
|
liwa365
初级用户
 
积分 21
发帖 11
注册 2007-7-5
状态 离线
|
『第 52 楼』:
使用 LLM 解释/回答一下
3楼太伟大了!!顶啊
The 3rd floor is so great!! Give it a thumbs up!
|
|
2008-1-9 05:44 |
|
|
Jneny
高级用户
    中國DOS聯盟常任參議员
积分 686
发帖 318
注册 2005-11-4
状态 离线
|
『第 53 楼』:
使用 LLM 解释/回答一下
论坛没有收藏主题贴的功能。 只好先回复慢慢再读
There is no function to bookmark theme posts in the forum. I have to reply first and then read slowly
|

. 繽紛色彩閃出的美麗是因為它沒有分開每種色彩...>/
我的百度空间: BEYOND超越 为什么用DOS |
|
2008-1-9 11:24 |
|
|
moniuming
银牌会员
     永远的菜鸟
积分 1335
发帖 574
注册 2007-11-27 来自 广西
状态 离线
|
『第 54 楼』:
使用 LLM 解释/回答一下
我现在就是想知道楼主问题的答案%%%%%%
比如下面:
@echo off&mode con cols=20 lines=2
title 计时器&color 0D
set /a H=0,M=0,S=0
set /a H=%t%%%86400/3600 2>nul
set /a M=%t%%%86400%%3600/60 2>nul
set /a S=%t%%%86400%%3600%%60 2>nul
ping -n 2 127.0|set/p l= 已计时间: %H%:%M%:%S%
set /a t+=1
cls
%0
I just want to know the answer to the original poster's question %%%%%%
For example below:
@echo off&mode con cols=20 lines=2
title Timer&color 0D
set /a H=0,M=0,S=0
set /a H=%t%%%86400/3600 2>nul
set /a M=%t%%%86400%%3600/60 2>nul
set /a S=%t%%%86400%%3600%%60 2>nul
ping -n 2 127.0|set/p l= Elapsed time: %H%:%M%:%S%
set /a t+=1
cls
%0
|
|
2008-2-3 01:22 |
|
|
allen733124
新手上路

积分 15
发帖 9
注册 2008-2-16
状态 离线
|
『第 55 楼』:
使用 LLM 解释/回答一下
说得好,顶一个.什么时候才能象各位前辈一样信手拈来啊
Well said, give a thumbs up. When will I be able to be as handy as the predecessors?
|
|
2008-2-18 15:53 |
|
|
hlighta
初级用户
 
积分 21
发帖 12
注册 2008-1-20
状态 离线
|
『第 56 楼』:
使用 LLM 解释/回答一下
代码中下面这三句不是很明白,查了一下用法也没弄清楚,能指点一下吗?
1 set /a S=%t%%%86400%%3600%%60 2>nul 中
%t%和%%都是指什么?
2 ping -n 2 127.0|set/p l= 已计时间: %H%:%M%:%S%中
set/p l= 是为什么?
3 set /a t+=1这个用法不明白。
以上这些谢谢。
1. In `set /a S=%t%%%86400%%3600%%60 2>nul`, `%t%` is a variable. The `%%` is used to escape the percent sign in batch processing, so that the percent sign is treated as a literal character instead of a variable delimiter.
2. In `ping -n 2 127.0|set/p l= 已计时间: %H%:%M%:%S%`, `set/p l=` is used to read input from the pipe. It reads the output from the `ping` command and assigns it to the variable `l` while displaying the specified prompt "已计时间: %H%:%M%:%S%".
3. `set /a t+=1` is an increment operation in batch processing. It is equivalent to `set /a t=t+1`, which increments the value of the variable `t` by 1.
|
|
2008-3-22 21:28 |
|
|
chd611
新手上路

积分 16
发帖 8
注册 2007-3-29
状态 离线
|
『第 57 楼』:
使用 LLM 解释/回答一下
嗯,说的是够清楚的,好啊。。顶起。。。
Well, that's clear enough. Okay. Let's give it a thumbs up...
|
|
2008-4-9 15:16 |
|
|
yrbo
新手上路

积分 4
发帖 2
注册 2007-10-23
状态 离线
|
『第 58 楼』:
使用 LLM 解释/回答一下
聞道有先後,遟來的學習,感謝提供。
There is no fixed order in learning, and I am grateful for the provision of delayed learning.
|
|
2008-4-9 17:47 |
|
|
klyx
新手上路

积分 16
发帖 8
注册 2007-12-28
状态 离线
|
|
2008-4-9 21:49 |
|
|
itolaiai
初级用户
 
积分 25
发帖 11
注册 2007-5-18
状态 离线
|
|
2008-4-11 00:07 |
|