java学习p150

java学习p150,第1张

java学习p150
public class a1 {
    public static void main(String[] args) {
        int count = 0;
        for (int i = 1;i <= 100;i++) {
            if (i % 5 != 0) {
                System.out.print(i + "t");
                count++;
                while (count % 5 == 0) {
                    System.out.println();
                    break;
                }
            }
        }
    }
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4744148.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-08
下一篇 2022-11-08

发表评论

登录后才能评论

评论列表(0条)

保存