Two cylinders are orthogonal, which means that the axis of the two cylinders is vertical and intersecting.
A.
正确
B.
错误
手机使用
分享
复制链接
新浪微博
分享QQ
微信扫一扫
微信内点击右上角“…”即可分享
反馈
参考答案:
举一反三
【简答题】在窗体上输出 等腰三角形的杨辉三角 Private Sub Form_Load() Dim a, i%, j%, n% Show Cls n = Val(InputBox("n=", "input", 0)) ReDim ( ) For i = 1 To n a(i, n + 1 - i) = ( ) a(i, n - 1 + i) = 1 Next For i = 3 To n For ...