问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

vbs难题{急急急!!}在线等啊

发布网友 发布时间:2023-10-13 14:16

我来回答

2个回答

热心网友 时间:2023-12-02 21:00

1.
num=12345
Do while num>=2
temp=temp&cstr(num Mod 2)
num=Int(num/2)
Loop
msgbox "12345="&temp
#####################################################
2.
for i = 1234 to 98765
mark=0
str=cstr(i)
for j = 1 to len(str)-1
for k = j+1 to len(str)
if mid(str,j,1)=mid(str,k,1) then
mark=mark+1
end if
next
next
if mark = 0 then
if (i mod 2)=0 then
odd=odd+1
else
even=even+1
end if
end if
next
msgbox "奇数有:"&odd&"偶数有:"&even
#######################################################
3.
for i = 1 to 100
if ((i*1000000+666666) mod 199) = 0 then
msgbox "这个自然数最小是:"&(i*1000000+666666)/199
exit for
end if
next
#######################################################
4.
Randomize
num1=int(100*Rnd)
num2=int(10*Rnd)
equ=num1&"*"&num2
ans = inputbox(equ & "=?")
if int(ans) = eval(equ) then
msgbox "Right!"
else
if eval(equ)<99 then
Msgbox "计算如下:"&chr(13)&num1&chr(13)&"* "&num2&chr(13)&"-----"&chr(13)&eval(equ),vbMsgBoxRight,"prompt "
else
num3=int(num1/10)
num4=num1-num3*10
Msgbox "计算如下:"&chr(13)&num1&chr(13)&"* "&num2&chr(13)&"------"&chr(13)&num4*num2&chr(13)&"+ "&num3*num2&" "&chr(13)&"------"&chr(13)&eval(equ),vbMsgBoxRight,"prompt "
end if
end if

热心网友 时间:2023-12-02 21:01

1.

x=12345
m=x
Do while x>=2
m=x Mod 2
x=Int(x/2)
WScript.echo x&" "&m
Loop

Microsoft (R) Windows Script Host Version 5.7
版权所有(C) Microsoft Corporation 1996-2001。保留所有权利。

6172 1
3086 0
1543 0
771 1
385 1
192 1
96 0
48 0
24 0
12 0
6 0
3 0
1 1

***** script completed *****

结果:11000000111001

热心网友 时间:2023-12-02 21:00

1.
num=12345
Do while num>=2
temp=temp&cstr(num Mod 2)
num=Int(num/2)
Loop
msgbox "12345="&temp
#####################################################
2.
for i = 1234 to 98765
mark=0
str=cstr(i)
for j = 1 to len(str)-1
for k = j+1 to len(str)
if mid(str,j,1)=mid(str,k,1) then
mark=mark+1
end if
next
next
if mark = 0 then
if (i mod 2)=0 then
odd=odd+1
else
even=even+1
end if
end if
next
msgbox "奇数有:"&odd&"偶数有:"&even
#######################################################
3.
for i = 1 to 100
if ((i*1000000+666666) mod 199) = 0 then
msgbox "这个自然数最小是:"&(i*1000000+666666)/199
exit for
end if
next
#######################################################
4.
Randomize
num1=int(100*Rnd)
num2=int(10*Rnd)
equ=num1&"*"&num2
ans = inputbox(equ & "=?")
if int(ans) = eval(equ) then
msgbox "Right!"
else
if eval(equ)<99 then
Msgbox "计算如下:"&chr(13)&num1&chr(13)&"* "&num2&chr(13)&"-----"&chr(13)&eval(equ),vbMsgBoxRight,"prompt "
else
num3=int(num1/10)
num4=num1-num3*10
Msgbox "计算如下:"&chr(13)&num1&chr(13)&"* "&num2&chr(13)&"------"&chr(13)&num4*num2&chr(13)&"+ "&num3*num2&" "&chr(13)&"------"&chr(13)&eval(equ),vbMsgBoxRight,"prompt "
end if
end if

热心网友 时间:2023-12-02 21:01

1.

x=12345
m=x
Do while x>=2
m=x Mod 2
x=Int(x/2)
WScript.echo x&" "&m
Loop

Microsoft (R) Windows Script Host Version 5.7
版权所有(C) Microsoft Corporation 1996-2001。保留所有权利。

6172 1
3086 0
1543 0
771 1
385 1
192 1
96 0
48 0
24 0
12 0
6 0
3 0
1 1

***** script completed *****

结果:11000000111001

热心网友 时间:2023-12-02 21:00

1.
num=12345
Do while num>=2
temp=temp&cstr(num Mod 2)
num=Int(num/2)
Loop
msgbox "12345="&temp
#####################################################
2.
for i = 1234 to 98765
mark=0
str=cstr(i)
for j = 1 to len(str)-1
for k = j+1 to len(str)
if mid(str,j,1)=mid(str,k,1) then
mark=mark+1
end if
next
next
if mark = 0 then
if (i mod 2)=0 then
odd=odd+1
else
even=even+1
end if
end if
next
msgbox "奇数有:"&odd&"偶数有:"&even
#######################################################
3.
for i = 1 to 100
if ((i*1000000+666666) mod 199) = 0 then
msgbox "这个自然数最小是:"&(i*1000000+666666)/199
exit for
end if
next
#######################################################
4.
Randomize
num1=int(100*Rnd)
num2=int(10*Rnd)
equ=num1&"*"&num2
ans = inputbox(equ & "=?")
if int(ans) = eval(equ) then
msgbox "Right!"
else
if eval(equ)<99 then
Msgbox "计算如下:"&chr(13)&num1&chr(13)&"* "&num2&chr(13)&"-----"&chr(13)&eval(equ),vbMsgBoxRight,"prompt "
else
num3=int(num1/10)
num4=num1-num3*10
Msgbox "计算如下:"&chr(13)&num1&chr(13)&"* "&num2&chr(13)&"------"&chr(13)&num4*num2&chr(13)&"+ "&num3*num2&" "&chr(13)&"------"&chr(13)&eval(equ),vbMsgBoxRight,"prompt "
end if
end if

热心网友 时间:2023-12-02 21:01

1.

x=12345
m=x
Do while x>=2
m=x Mod 2
x=Int(x/2)
WScript.echo x&" "&m
Loop

Microsoft (R) Windows Script Host Version 5.7
版权所有(C) Microsoft Corporation 1996-2001。保留所有权利。

6172 1
3086 0
1543 0
771 1
385 1
192 1
96 0
48 0
24 0
12 0
6 0
3 0
1 1

***** script completed *****

结果:11000000111001
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
美的面包机和面要多久 美的面包机和面的时间要多长 美的面包机怎么用手动操作 如何用美的面包机发面 如何用美的面包机和面 美的面包机如何和面 CDR教程—教你如何使用CorelDRAW复制图形方法 苹果手机微信怎么换漂亮字体(苹果手机微信怎么换行输入) 有什么好用的app转换字体 手写转文字的软件 erp可以看评论地址吗 淘宝评论url是什么意思? 深圳市快销易电子商务有限公司怎么样? 单片机程序存储区的寻址范围是由程序计数器PC的位数决定的,若PC为16... 一手房公积金贷款27万25年每月应供多钱 绿茶肉碱的作用 12星座男能否当个好爸爸 拳击沙袋.拳击手套.保定铁球.静音版健身双轮.腹肌训练轮.双... 深圳市易生活电子商务有限公司怎么样? 深圳市易港电子商务有限公司怎么样? 老年高血压病人在秋冬季应注意些什么(行止,饮食等方面)? 云南丽江古城哪儿能吃到正宗牦牛肉?不想吃哪种牛油泡猪肉。2 丽江古城哪家牦牛肉好16 丽江胖金妹牦牛肉食品有限公司怎么样?3 谁能根据下面这段十进制转二进制的vbs代码改成二进制转十进制的... 1995年7月7日出生的女孩,请帮忙算一下命运13 请大师看看我的紫薇命盘 想了解事业 和 婚姻 高人帮我看看紫微排盘,主要想看看事业,婚姻。谢谢! 如何看待所谓的“古风圈”? 丽江最好的牦牛肉是哪家??(详细) 谢谢154 我是1995年农历7月27日晚上10点钟出生的女孩,请高人帮...5 一年加一年是多少天 深圳市恒之易电子商务有限公司怎么样? 我设置过一次了,还能改第二次吗?怎么改 在线求指导:科学兴趣小组的学生在 科学的一个问题急啊大家帮帮忙吧!! UG装配图中出现怎么隐藏草图曲线2 UG4.0如何隐藏装配组件里的草图20 我想问一下,挂靠浙江省的单位,怎么在浙江财政厅打印工作证明?求回 UG装配图中出现要如何隐藏草图曲线3 ug草图中隐藏的线怎样显示出来?27 UG 在装配体中做草图,看不到草图线条。是什么原因???3 我之前UG装配的时候,导入的部件有草图,现在就只有实体在里面...8 v1v2v3对应资产 迷你世界矿工空岛生存游戏玩法大全攻略 深圳安信小额贷款有限责任公司怎么样?1 在ug中如何一次性隐藏所有的尺寸线50 求PS高手把这图片的四块弄成绿色的渐变色,GIF格式就可以,...2 求PS高手指点 这个渐变标题栏如何制作啊? 12星座当了父亲之后的样子 丽江牦牛肉干胖金妹和藏圣牌哪个好3 胖金妹牦牛肉怎么样2