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(); } }
标签:多测师,快手,static,test,杭州,public From: https://www.cnblogs.com/xiaoshubass/p/16742858.html