我是靠谱客的博主 缓慢雪糕,最近开发中收集的这篇文章主要介绍JAVA方向笔试强训-day1一.编程题 二.选择题错题 ,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

一.编程题 

组队竞赛_牛客笔试题_牛客网 (nowcoder.com)

1 2 3 4 5 6 7 8 9

那么取值的话:  1  8  9

                           2  6  7

                           3  4  5

f3843aae9d2b4c5d97d0178625ce94e6.png

关系式得到是:中间数的那个下标值 


public class Study {
public static void main(String[] args) {
Scanner scanner=new Scanner(System.in);
int n=scanner.nextInt();
int[]array=new int[n*3];
for (int i = 0; i < 3*n; i++) {
array[i]=scanner.nextInt();
}
Array.sort(array);
int sum=0;
for (int i = 0; i < n; i++) {
sum+=array[array.length-(2*(i+1))];
}
System.out.println(sum);
}
}

删除公共字符_牛客题霸_牛客网 (nowcoder.com)

1.s1 :原字符串 s2  they are student :需要删除的字符集 aeiou 

2.把需要删除的字符集映射到HashMap中

3.遍历s1查找map中是否包含该字符,若是不包含则说明这是不需要删除的-于是append()

public class Study {
public static void main(String[] args) {
Scanner scanner=new Scanner(System.in);
String s1=scanner.nextLine();//
String s2=scanner.nextLine();//需要删除的字符串集
HashMap<Character,Integer> hashMap=new HashMap<>();
for (int i = 0; i <s2.length() ; i++) {
if (hashMap.get(s1.charAt(i))==null){//返回key对应的value值
hashMap.put(s2.charAt(i),1);
}else{
hashMap.put(s2.charAt(i),hashMap.get(s1.charAt(i))+1);
}
}
StringBuilder ret=new StringBuilder();
for (int i = 0; i < s1.length(); i++) {
if (!hashMap.containsKey(s1.charAt(i))){
ret.append(s1.charAt(i));
}
}
System.out.println(ret);
}
}

二.选择题错题 

1. 已知如下类定义:
class Base {
public Base (){
//...
}
public Base ( int m ){
//...
}
public void fun( int n ){
//...
}
}
public class Child extends Base{
// member methods
}
如下哪句可以正确地加入子类中?

A private void fun( int n ){ //...}
B void fun ( int n ){ //... }
C protected void fun ( int n ) { //... }
D public void fun ( int n ) { //... }

考点:子类覆盖父类的方法 ——覆盖的规则

1.参数必须一样,且返回类型必须兼容

2.不能降低方法的存取权限——子类方法存取权限必须>=父类

2.假设 A 类有如下定义,设 a 是 A 类的一个实例,下列语句调用哪个是错误的?()
public class A
{
public int i;
static String s;
void method1(){}
static void method2(){}
}
A System.out.println(a.i);
B a.method1();
C A.method1();//通过类名调用非静态方法
D A.method2();

 

 

最后

以上就是缓慢雪糕为你收集整理的JAVA方向笔试强训-day1一.编程题 二.选择题错题 的全部内容,希望文章能够帮你解决JAVA方向笔试强训-day1一.编程题 二.选择题错题 所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部