这个小程序代码能不能简化呢
发布网友
发布时间:2022-05-21 03:30
我来回答
共4个回答
热心网友
时间:2023-10-13 04:55
public class Test {
public static void main(String[] args) throws Exception {
for(int i = 1; i <= 11; i ++) {
int count = Math.abs(i - 6);
for(int j = 0; j < count; j ++) {
System.out.print("*");
}
System.out.print("\r\n");
}
}
}
热心网友
时间:2023-10-13 04:56
自愧不如
热心网友
时间:2023-10-13 04:56
lzxz1234 高手追问我也觉得
热心网友
时间:2023-10-13 04:57
这个程序只要输出这个结果吗??追问是的,简单的哦