- package org.niit.test;
- import org.junit.Test;
- public class Test3 {
- /**
- * 从1循环到50并在每行打印一个值, 并且要在3的倍数上加“foo”,5的倍数上加“biz”,7的倍数上加“baz”.如
- */
- @Test
- public void test1() {
- int i = 1;
- while (i < 50) {
- String str = "";
- if (i % 3 == 0) {
- str += "foo";
- }
- if (i % 5 == 0) {
- str += " biz";
- }
- if (i % 7 == 0) {
- str += " baz";
- }
- System.out.println(i + "\t" + str);
- i++;
- }
- }
- }
复制代码 |