<script>alert“markdown问答”</script>

<script>alert“markdown问答”</script>

具体遇到的问题

<script>alert“markdown问答”</script>

报错信息的截图

<script>alert“markdown问答”</script>

相关课程内容截图

图片描述

尝试过的解决思路和结果

粘贴全部相关代码,切记添加代码注释(请勿截图)

import java.util.Scanner;
 
public class SpiralSquare01{
 
    public static void main(String[]
 args) {
        @SuppressWarnings("resource")
        Scanner
 s=new Scanner(System.in);
        System.out.println("请输入螺旋方阵的长");
        int indexY=s.nextInt();
        System.out.println("请输入螺旋方阵的宽");
        int indexX=s.nextInt();
        if(indexX<=0||indexY<=0){
            System.out.println("输入的数字不合法!");
            return;
        }
        int[][]
 square=new int[indexX][indexY];
        int x=0;
        int y=0;
        for(int i=1;i<=indexX*indexY;){
            while(y<square[x].length-1&&square[x][y+1]==0){
                square[x][y++]=i++;
            }
            while(x<square.length&&square[x][y]==0){
                square[x++][y]=i++;
            }
            while(y>0&&square[x-1][y-1]==0){
                square[x-1][--y]=i++;
            }
            --x;
            while(x>1&&square[x-1][y]==0){
                square[--x][y]=i++;
            }
            y++;
        }
        for(int i=0;i<square.length;i++){
            for(int j=0;j<square[i].length;j++){
                System.out.print(square[i][j]+"\t");
            }
            System.out.println();
        }
    }
}

正在回答

登陆购买课程后可参与讨论,去登陆

3回答

老师回复此问题,请采纳2222

http://img1.sycdn.imooc.com/climg//5d6f8644088b67b302400135.jpg

http://img1.sycdn.imooc.com/climg//5f83f57809bfcf2109270909.jpg


geely1 2020-10-12 14:15:28

讲师回答,请用户采纳http://img1.sycdn.imooc.com/climg//5d6f8644088b67b302400135.jpg

小鱼0319zn 提问者 2020-10-12 14:12:15

自己回答<script>alert"标题"</script>

问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
java测试课程
  • 参与学习           人
  • 提交作业       66    份
  • 解答问题       279    个

在本次项目,我们将一起回顾 Web时代的变迁,了解五花八门的前端研发工具,深入学习HTML5(超文本标记语言)和CSS3(层叠样式表),并最终完成一个 百度首页。

了解课程
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师