解题思路:
注意事项:
参考代码:
import java.util.Scanner;
public class 铺地毯 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int [][] arr= new int[n][4];
for (int i = 0; i < n; i++) {
for (int j = 0; j < 4; j++) {
arr[i][j] = sc.nextInt();
}
}
int x = sc.nextInt();
int y = sc.nextInt();
int a = -1;
for (int i = 0; i < n; i++) {
if (x>=arr[i][0]&&x<=(arr[i][0]+arr[i][2])&&y>=arr[i][1]&&y<=(arr[i][1]+arr[i][3])){
a = i+1;
}
}
System.out.println(a);
}
}
0.0分
2 人评分
C语言训练-求矩阵的两对角线上的元素之和 (C语言代码)浏览:619 |
A+B for Input-Output Practice (C++代码)浏览:632 |
多输入输出练习1 (C语言代码)浏览:1219 |
C语言程序设计教程(第三版)课后习题5.5 (C语言代码)浏览:737 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:583 |
C语言程序设计教程(第三版)课后习题6.9 (C语言代码)浏览:806 |
WU-图形输出 (C++代码)浏览:836 |
WU-输入输出格式练习 (C++代码)浏览:1133 |
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:672 |
1009题解浏览:802 |