首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
安菲尔德星期三
获赞
3913
粉丝
71
关注
0
看过 TA
3774
男
中华女子学院
2012
后端
IP属地:广东
年后必跳槽
私信
关注
拉黑
举报
举报
确定要拉黑安菲尔德星期三吗?
发布(313)
评论
刷题
收藏
安菲尔德星期三
关注TA,不错过内容更新
关注
2022-07-04 19:54
中华女子学院 后端
题解 | #牛牛的字符矩形#
解题思路 思路多种多样,符合题目要求即可 代码实现 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); char c=sc.next().charAt(0); for(int i=1;i<=9;i++) { System.out.print(c); if(i%3==0) { S...
0
点赞
评论
收藏
分享
2022-07-03 22:19
中华女子学院 后端
题解 | #用where过滤空值练习#
解题思路 where过滤空值,注意不能用等于号,因为null表示不确定,不和任何值相等,只能用is来比较 代码实现 select device_id, gender, age, university from user_profile where age is not NULL
0
点赞
评论
收藏
分享
2022-07-01 18:46
已编辑
中华女子学院 后端
题解 | #查找年龄大于24岁的用户信息#
解题思路 用where语句来筛选数据 代码实现 select device_id, gender, age, university from user_profile where age > 24;
0
点赞
评论
收藏
分享
2022-07-01 18:43
中华女子学院 后端
题解 | #查找学校是北大的学生信息#
思路 用where关键词来筛选数据 代码实现 select device_id, university from user_profile where university = '北京大学';
0
点赞
评论
收藏
分享
2022-06-26 23:51
中华女子学院 后端
题解 | #查找后多列排序#
思路 多列用逗号隔开,排序用order by 代码实现 SELECT device_id,gpa,age from user_profile order by gpa,age
0
点赞
评论
收藏
分享
2022-06-26 23:47
中华女子学院 后端
题解 | #查询结果限制返回行数#
思路 限制返回行数,首先就可以想到limit关键字 代码实现 select device_id from user_profile limit 2
0
点赞
评论
收藏
分享
2022-06-23 00:46
中华女子学院 后端
#穿越回高考你还会选现在的专业吗# 大概率还是会吧,当初选计算机就是听说薪水很高,应届生也能轻松破万,但学了计算机之后发现也就那样,谈不上感兴趣,如果穿越回高考的话挺想换个学校,可惜没有如果😣
社畜职场交流圈
0
点赞
评论
收藏
分享
2022-06-15 10:36
中华女子学院 后端
#实习下班后你在做什么# 实习前,下班后要好好提升自己,实习后,刷刷视频就睡觉了😂
社畜职场交流圈
0
点赞
评论
收藏
分享
2022-04-27 19:53
中华女子学院 后端
题解 | #返回更多的产品#
解题思路 这题很明显就是要用条件查询过滤条件,所以要用where, 题目要求最后返回的数据不能重复,所以要用distinct来去重。 代码实现 select distinct order_num from OrderItems where quantity >=100
0
点赞
评论
收藏
分享
2022-04-27 19:48
中华女子学院 后端
题解 | #返回固定价格的产品#
解题思路 本题题目要求只返回固定价格的产品,很明显是用条件查询,所以要用where语句来过滤数据 代码实现 select prod_id, prod_name from Products where prod_price = 9.49
0
点赞
评论
收藏
分享
2022-04-27 19:43
中华女子学院 后端
题解 | #按照数量和价格排序#
解题思路 题目要求排序,很自然就会想到要用order by,多个列一起排序时,需要分开写,中间用逗号隔开 代码实现 select quantity, item_price from OrderItems order by quantity desc, item_price desc;
0
点赞
评论
收藏
分享
2022-04-20 12:07
中华女子学院 后端
题解 | #交换变量值#
解题思路 不用第三个变量交换两个值,可以用异或,也可以用加减法 代码实现 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int a = scanner.nextInt(); int b = scanner.nextInt(); // 异或 // a = a ^ b; // b =...
0
点赞
评论
收藏
分享
2022-04-20 12:02
中华女子学院 后端
题解 | #四舍五入#
解题思路 考察基础函数,Math包下的round用于四舍五入,ceil用于向上取整,floor用于向下取整。 代码实现 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); double d= scanner.nextDouble(); //write your code here...... int i = (int...
0
点赞
评论
收藏
分享
2022-04-20 11:59
中华女子学院 后端
题解 | #简单运算#
解题思路 没啥好说的,考察的是基础语法 代码实现 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int a = scanner.nextInt(); int b = scanner.nextInt(); scanner.close(); if (a < b){ int...
0
点赞
评论
收藏
分享
2022-04-20 11:54
中华女子学院 后端
题解 | #类型转换#
解题思路 double的范围比int大,所以是要强转,直接用(int)就行。 代码实现 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); double d = scanner.nextDouble(); System.out.println(Main.typeConversion(d)); } public stat...
不会java的程序猿*:
为什么调方法啊 直接System.out.println((int)d); 不就好了吗
0
点赞
评论
收藏
分享
1
16
17
18
19
20
21
关注他的用户也关注了:
牛客网
牛客企业服务