大神,求步骤!谢谢!

 我来答
tllau38
高粉答主

2016-03-08 · 关注我不会让你失望
知道顶级答主
回答量:8.7万
采纳率:73%
帮助的人:2亿
展开全部
x->0
sin3x ~3x
cosx ~ 1- (1/2)x^2
1-cosx ~ (1/2)x^2

lim(x->0+) sin3x/√(1-cosx)
=lim(x->0+) 3x/[(√2/2)x ]
=3√2
追问
看不懂
追答
这是等价无穷小
Or
lim(x->0+) sin3x/√(1-cosx) (0/0)
=lim(x->0+) sin3x/√( 2[sin(x/2)]^2 )
=(1/√2) lim(x->0+) sin3x/(sin(x/2)
=(1/√2) lim(x->0+) (3x)/(x/2)
=3√2
sbj518
2016-03-08 · TA获得超过4.4万个赞
知道大有可为答主
回答量:1.1万
采纳率:81%
帮助的人:5299万
展开全部
定义一个全局变量的数组:
dim a(10) as integer

随机产生10个两位的素数,素数各不相同:
Dim a(10), x As Integer
Dim str As String = ""
Dim di As Boolean = True
Dim n As Integer
Dim sd As
For i = 1 To 10
Do
Do
Randomize()
n = Int(Rnd() * 100 + 10)
Loop Until IsSushu(n)
If i > 1 Then
For x = 1 To i - 1
If a(x) = n Then
di = False
End If
Next
End If
Loop Until di = True
a(i) = n
'str = str & a(i) & " "
Next

随机数升序排序:
For i = 1 To 10
For j = 1 To 10 - i
If a(j) > a(j + 1) Then
x = a(j + 1)
a(j + 1) = a(j)
a(j) = x
End If
Next j
Next i

For i = 1 To 10
str = str & a(i) & " "
Next

将升序的数组写入文件:
Dim file As New System.IO.StreamWriter("data1.txt")
file.WriteLine(str)
file.Close()

读取文件,并写入数组及降序排序:
Dim file As New System.IO.StreamReader("data1.txt")
Dim words As String = file.ReadToEnd()
file.Close()
Dim b() As String
Dim temp As Integer
Dim str1 As String
str1 = ""
b = Split(words, " ")
Dim c() As Integer

Dim l As Integer
l = UBound(b)
ReDim c(l)

For i = 1 To l
c(i) = Val(b(i - 1))
Next
For i = 1 To l
For j = 1 To l - i
If c(j) < c(j + 1) Then
temp = c(j + 1)
c(j + 1) = c(j)
c(j) = temp
End If
Next j
Next i
For i = 1 To l
str1 = str1 & c(i) & " "
Next
MsgBox(str1)
追问
什么鬼
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式