import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scr = new Scanner(System.in); int N = scr.nextInt(); int[] A=new int[N]; int[] B=new int[N]; int[] C=new int[N]; scr.nextLine(); String Line=scr.nextLine(); for(int j=0;j<N;j++) { A[j]=Integer.parseInt(Line.split(" ")[j]); } Line=scr.nextLine(); for(int j=0;j<N;j++) { B[j]=Integer.parseInt(Line.split(" ")[j]); } Line=scr.nextLine(); for(int j=0;j<N;j++) { C[j]=Integer.parseInt(Line.split(" ")[j]); } //枚举所有三元组组合 int res=0; for(int i=0;i<N;i++) { for(int j=0;j<N;j++) { for(int k=0;k<N;k++) { if(A[i]<B[j]&&B[j]<C[k]) {//判断是否满足条件 res++; } } } } System.out.print(res); } }
解题思路:
注意事项:
参考代码:
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题6.8 (C语言代码)浏览:724 |
C语言程序设计教程(第三版)课后习题5.8 (C语言代码)浏览:981 |
C二级辅导-统计字符 (C语言代码)浏览:529 |
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:530 |
C语言程序设计教程(第三版)课后习题6.3 (C++代码)浏览:1072 |
三角形 (C语言代码)浏览:965 |
1009题解浏览:802 |
printf基础练习2 (C语言代码)浏览:547 |
C语言程序设计教程(第三版)课后习题10.5 (C语言代码)浏览:612 |
时间转换 (C语言代码)浏览:699 |