How to solve it
How to solve it
已解决
评论 (1)
- 受欢迎
- 新
- 旧
你必须先登录才能发表评论
Leo
7 四月 2021, 05:42解决方法
import java.io.*;
import java.util.Scanner;
public class Solution {
public static void main(String[] args) throws Exception {
//在此编写你的代码
Scanner sc=new Scanner(System.in);
int a=sc.nextInt();
int b=sc.nextInt();
for(int i=0;i<a;i++){
for(int j=0;j<b;j++){
System.out.print("8");
}
System.out.println();
}
}
}
+2