乡下人产国偷v产偷v自拍,国产午夜片在线观看,婷婷成人亚洲综合国产麻豆,久久综合给合久久狠狠狠9

  • <output id="e9wm2"></output>
    <s id="e9wm2"><nobr id="e9wm2"><ins id="e9wm2"></ins></nobr></s>

    • 分享

      按鍵精靈腳本筆記:基本語法

       hdzgx 2019-12-15
      Dim x  //申明變量x
      x = "我是x變量"
      TracePrint x  //在控制臺打印出x變量

      Dim a
      a = 10
      TracePrint a+5 //在控制臺打印出a變量

      Dim arr(5)   //數(shù)組申明
       arr(0) = "我是0號"
       arr(1) = "我是1號"
       arr(2) = 2
      num = 0

      For 5      //For 循環(huán)的用法
      TracePrint arr(num)
      num = num + 1
      Next

      aa = 9   //申明變量時候 Dim可以省略
      If aa = 5 Then     //If條件語句的用法
      TracePrint "aa等于5"
      ElseIf aa = 6 Then
      TracePrint "aa等于6"
      ElseIf aa = 7 Then
      TracePrint "aa等于7"
      Else 
      TracePrint "aa不等于5,6,7"
      End If

      KeyPress "w", 1 //按下鍵盤w鍵1次
      KeyPress "r", 2 //按下鍵盤r鍵2次

      TracePrint Cstr(aa)//把數(shù)字轉(zhuǎn)換成字符串

      bb = 0
      While bb < 5   //while循環(huán)的用法
      TracePrint bb
      bb = bb+1
      Wend

      c1 = "我是"
      c2 = "中國人"
      TracePrint c1 & c2//字符串鏈接

      Function test(a,b)  //函數(shù)定義
      TracePrint "結(jié)果 "&(a+b)
      End Function

       Call test(5,6)    //函數(shù)調(diào)用
      原文鏈接:https://blog.csdn.net/u011266694/article/details/78312067

        本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點。請注意甄別內(nèi)容中的聯(lián)系方式、誘導購買等信息,謹防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊一鍵舉報。
        轉(zhuǎn)藏 分享 獻花(0

        0條評論

        發(fā)表

        請遵守用戶 評論公約

        類似文章 更多