首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
tlwaj
获赞
8
粉丝
5
关注
16
看过 TA
123
湖南大学
2024
前端工程师
IP属地:北京
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑tlwaj吗?
发布(40)
评论
刷题
tlwaj
关注TA,不错过内容更新
关注
湖南大学 前端工程师
@Hartley:
华子录用审批
点赞 107
评论 107
0
点赞
评论
收藏
分享
湖南大学 前端工程师
@-无名-:
长得帅面试时有用吗
点赞 31
评论 61
0
点赞
评论
收藏
分享
2022-04-17 11:26
湖南大学 前端工程师
题解 | #按照数量和价格排序#
replace into examination_info(exam_id, tag, difficulty, duration, release_time) values (9003, 'SQL', 'hard', 90, '2021-01-01 00:00:00'); //replace into 可强制插入该条语句
0
点赞
评论
收藏
分享
2022-02-11 18:09
湖南大学 前端工程师
2022-02-11
在牛客打卡9天,今天学习:刷题 14 道
每日监督打卡
0
点赞
评论
收藏
分享
2022-02-09 20:16
湖南大学 前端工程师
2022-02-09
在牛客打卡8天,今天学习:刷题 13 道
每日监督打卡
0
点赞
评论
收藏
分享
2022-01-26 15:57
湖南大学 前端工程师
题解 | #十进制数转二进制数#
public class Main { public static void main(String[] args) { Scanner scanner=new Scanner(System.in); double num = scanner.nextDouble(); //write your code here...... double absNum = Math.abs(num); double sqrNum = Math.sqrt(num); double logNum = Mat...
0
点赞
评论
收藏
分享
2022-01-26 15:52
湖南大学 前端工程师
题解 | #十进制数转二进制数#
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); while (scanner.hasNextInt()) { int seed = scanner.nextInt(); Random random = new Random(seed); //write your code...
0
点赞
评论
收藏
分享
2022-01-26 15:38
湖南大学 前端工程师
2022-01-26
在牛客打卡7天,今天学习:刷题 12 道
每日监督打卡
0
点赞
评论
收藏
分享
2022-01-25 21:44
湖南大学 前端工程师
题解 | #十进制数转二进制数#
public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int num = scanner.nextInt(); //write your code here...... int n = num; String output = ""; String ans = ""; while(n > 0){ ...
0
点赞
评论
收藏
分享
2021-11-05 19:01
湖南大学 前端工程师
2021-11-05
在牛客打卡6天,今天学习:刷题 1 道/代码提交 2 次
每日监督打卡
0
点赞
评论
收藏
分享
2021-11-04 21:46
湖南大学 前端工程师
题解 | #统计字符串中字母出现次数#
import java.util.Scanner; public class Main { public static void main(String[] args) { String string = "H e l l o ! n o w c o d e r"; Scanner scanner= new Scanner(System.in); String word = scanner.next(); scanner.close(); System.out.println(check(string, word)); } public static int check(String str,...
0
点赞
评论
收藏
分享
2021-11-04 21:40
湖南大学 前端工程师
题解 | #动态字符串#
import java.util.Scanner; //运用学到的StringBuffer中的insert方法,并利用一个循环确定插入位置,最后得到所需结果 public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); String str = scanner.next(); //write your code here...... StringBuffer sb = new StringBuffer(str); int l =...
0
点赞
评论
收藏
分享
2021-11-04 21:23
湖南大学 前端工程师
题解 | #创建单例对象#
public class Main { //上CSDN学习了一手才看明白 public static void main(String[] args) { Singleton s1 = Singleton.getInstance(); Singleton s2 = Singleton.getInstance(); System.out.println(s1 == s2); } } class Singleton { private static Singleton instance; private Singleton() { } //write your code here.........
0
点赞
评论
收藏
分享
2021-11-04 20:44
湖南大学 前端工程师
题解 | #重写父类方法#
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); while (scanner.hasNextInt()) { int x = scanner.nextInt(); int y = scanner.nextInt(); Sub sub = new Sub(x, y); System.out.println(su...
0
点赞
评论
收藏
分享
2021-11-04 20:41
湖南大学 前端工程师
题解 | #实现接口#
import java.util.Scanner; public class Main { public static void main(String[] args) { Comparator comparator = new ComparatorImpl(); Scanner scanner = new Scanner(System.in); while (scanner.hasNextInt()) { int x = scanner.nextInt(); int y = scanner.nextInt(); Sys...
0
点赞
评论
收藏
分享
1
2
3
关注他的用户也关注了:
牛客网
牛客企业服务