快手Python笔试题【杭州多测师】【杭州多测师_王sir】

def test():
    for i in range(10):
        if i % 2 !=0:
            print("hello world")
        else:
            pass
test() #调用函数
package com.duoceshi.thread;

public class HelloWorld {

    public static void test(){
        for (int i = 0; i < 10 ; i++) {
            if (i % 2 == 0){
                continue;
            }else{
                System.out.println("hello world");
            }
        }
    }

    public static void main(String[] args) {
        HelloWorld.test();
    }
}

 

posted @ 2022-09-29 19:53  多测师_王sir  阅读(37)  评论(0编辑  收藏  举报