java中使用循环输出:100.95.90.85......... 5 先画出流程图 在编程实现 用while做

2025-03-03 04:10:35
推荐回答(1个)
回答1:

class test{
public static void main(String args[])
{
int a=100;
while(a>=5)
{
System.out.println(a);
a=a-5;

}
}
}
流程图我就不画了...