Commit f971b517 authored by 9631408's avatar 9631408

inital commit

parents
Pipeline #467 failed with stages
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>
\ No newline at end of file
import java.util.Scanner;
public class Ground {
Scanner scanner = new Scanner(System.in);
int row = scanner.nextInt();
int column = scanner.nextInt();
private int[][] pos = new int[row][column];
public int getRow() {
return row;
}
public int getColumn() {
return column;
}
public void setRow(int row) {
this.row = row;
}
public void setColumn(int column) {
this.column = column;
}
public void setPos(int[][] pos) {
this.pos = pos;
}
public int print(){
for (int i=0;i<row;i++){
for (int j=0;j<column;j++){
System.out.println("-");
}
}
return pos[row][column];
}
}
\ No newline at end of file
public class Main {
public static void main(String[] args) {
new Ground();
}
}
import java.util.Scanner;
public class Police {
int x;
int y;
boolean isSeen = false;
Scanner scanner =new Scanner(System.in);
int k=scanner.nextInt();
int [] policeNumber = new int[k];
public Police(int x, int y, int isSeen) {
this.x = x;
this.y = y;
}
public int getX() {
return x;
}
public void setX(int x) {
this.x = x;
}
public int getY() {
return y;
}
public void setY(int y) {
this.y = y;
}
public static void Notify(boolean isSeen) {
}
public void move() {
}
}
public class Thief {
int x;
int y;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment