Jump to content

ооочень простой вопрос(для меня сложный)


rusoped
 Share

Recommended Posts

мне нужно чтобы переменные i и x отображались где нибудь в процессе выполнения программы

то есть надпись обновлялась на экране после каждого изменения  переменных

вот мой код

Скрытый текст

<script>

    function CheckBox(arr) {
        var i = 0
        var box = []
        do {
            if (i > 40) {
                break
            }
            if ((i + 1) % 7 == 0) {
                i++
            }
            box.push(arr)
            box.push(arr[i + 1])
            box.push(arr[i + 7])
            box.push(arr[i + 8])
            if (box[0] + box[1] + box[2] + box[3] == 2) {
                i++
            } else {
                return 0 
            }
            box = []
            i++
        }while(true) 
        return 1}
    
    function BinArrPlusOne(arr) {
        arr[48]++
        var i = 48
        do{
            if (arr[0] > 1) {
                return 'end'
            }
            if (arr > 1) {
                arr[i - 1]++
            }
            i--
        }while(i > 1)
        
        return arr}

    var desk = []
    var i = 0                                     <===== вот эта
    var x = 0                                     <===== и вот эта

    do {
        desk.push(0)
    }while(desk.length < 49)

    do {
        i++          
        x = x + CheckBox(desk)
        desk = BinArrPlusOne(desk)
    }while(BinArrPlusOne(desk) != 'end')

    alert(x)

</script>

 

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy