欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

输出 200以内 能被7 整除 但不能被4整除的数,并统计个数

程序员文章站 2022-07-15 12:07:59
...

package java04_循环结构;
/**

  • 输出 200以内 能被7 整除 但不能被4整除的数,并统计个数
  • 显示时:每行显示5个
  • xx xx xx xx xx
  • xx xx xx xx xx
  • 总共有x个
  • @author User

*/
public class 练习1 {
public static void main(String[] args) {
/int i = 1;
int count =0;
do{
if(i%70&&i%4!=0){
System.out.print(i+"\t");
count++;//找到一个符合条件的数++
if(count%5
0){
System.out.println();
}
}
i++;
}while(i<=200);
System.out.println("\n总共"+count);
/

	int count =0;
	for(int i = 1;i<=200;i++){
		if(i%7==0&&i%4!=0){
			System.out.print(i+"\t");
			count++;//找到一个符合条件的数++
			if(count%5==0){
				System.out.println();
			}
		}
	}
}

}

相关标签: JAVA基础 java