编辑代码


Module Module1

Sub Main()
    s = 1
    for i = 1 to  10 
        s = (s+1)*2
    next i
    printf s
End Sub