当前位置: > Visual Basic里公式 Dim a =New integer(,){{1,1},{2,2},{3,3},{4,...
题目
Visual Basic里公式 Dim a =New integer(,){{1,1},{2,2},{3,3},{4,
Dim a =New integer(,){{1,1},{2,2},{3,3},{4,4}}
这个公式和 Dim a(0,3) as integer
a(0,1) =(1,1)
a(0,2) =(2,2)
a(0,3) =(3,3)
a(0,4) =(4,4})
是一个意思吗?好像不是一个意思吧 那Dim a =New integer(,){{1,1},{2,2},{3,3},{4,4}}公式和什么公式是相等的?

提问时间:2021-03-04

答案
1、Dim a =New integer(,){{1,1},{2,2},{3,3},{4,4}}的含义是:定义一个二维数组a,并给a赋值.
赋值后数组a中各项的值分别是:
a(0,0)=1
a(0,1)=1
a(1,0)=2
a(1,1)=2
a(2,0)=3
a(2,1)=3
a(3,0)=4
a(3,1)=4
2、Dim a =New integer(,){{1,1},{2,2},{3,3},{4,4}}
和 Dim a(0,3) as integer
a(0,1) =(1,1)
a(0,2) =(2,2)
a(0,3) =(3,3)
a(0,4) =(4,4})
不同.后者的定义和赋值方式都是错误的.
定义一维数组只需要“Dim a(3) as integer”即可.并且“a(0,1) =(1,1)”中“=(1,1)”是错误的.
3、和“Dim a =New integer(,){{1,1},{2,2},{3,3},{4,4}}”等价的是:
Dim a(3,1) as integer
a(0,0)=1
a(0,1)=1
a(1,0)=2
a(1,1)=2
a(2,0)=3
a(2,1)=3
a(3,0)=4
a(3,1)=4
希望对你有所帮助!
举一反三
已知函数f(x)=x,g(x)=alnx,a∈R.若曲线y=f(x)与曲线y=g(x)相交,且在交点处有相同的切线,求a的值和该切线方程.
我想写一篇关于奥巴马的演讲的文章,写哪一篇好呢?为什么好
奥巴马演讲不用看稿子.为什么中国领导演讲要看?
想找英语初三上学期的首字母填空练习……
英语翻译
版权所有 CopyRight © 2012-2019 超级试练试题库 All Rights Reserved.