首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
跪求要一个offer
获赞
65
粉丝
3
关注
47
看过 TA
153
男
门头沟学院
2023
Java
IP属地:浙江
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑跪求要一个offer吗?
发布(216)
评论
刷题
跪求要一个offer
关注TA,不错过内容更新
关注
2021-11-03 09:33
门头沟学院 Java
题解 | #简单运算#
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(); int shu1=a+b; int shu5=a*b; int shu2,shu3,shu4; if(a>b){ shu2=a-b; shu3=a/b; shu4=a%b; } else{ sh...
0
点赞
评论
收藏
分享
2021-11-02 23:50
门头沟学院 Java
题解 | #计算商场折扣#
import java.util.*; public class Main { public static void main(String[] args) { Scanner console = new Scanner(System.in); int price = console.nextInt(); int cost = 0; if(price>=100&&price<500){ cost=(int)(price0.9); } else if(price>=500&&price<2000){ cost=(int)(price0.8)...
0
点赞
评论
收藏
分享
2021-11-02 23:43
门头沟学院 Java
题解 | #交换变量值#
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(); int t; t=a; a=b; b=t; //write your code here....... System.out.println(a+" "+b); } }
0
点赞
评论
收藏
分享
2021-11-02 23:41
门头沟学院 Java
题解 | #四舍五入#
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); double d= scanner.nextDouble(); double start=d+0.5; //write your code here...... //实现Math.round函数的实现原理 System.out.println((int)start); } }
0
点赞
评论
收藏
分享
2021-11-02 23:34
门头沟学院 Java
题解 | #类型转换#
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 static int typeConversion(double d){ int start; start=(int)d; return start; //write y...
0
点赞
评论
收藏
分享
2021-11-02 23:29
门头沟学院 Java
2021-11-02
在牛客打卡10天,今天学习:刷题 1 道/代码提交 13 次
每日监督打卡
0
点赞
评论
收藏
分享
2021-11-01 21:12
门头沟学院 Java
题解 | #更新记录(二)#
UPDATE exam_record set submit_time='2099-01-01 00:00:00', score=0 where start_time<'2021-09-01 00:00:00' and submit_time is null;
0
点赞
评论
收藏
分享
2021-11-01 15:20
门头沟学院 Java
题解 | #浙江大学用户题目回答情况#
select user_profile.device_id,question_practice_detail.question_id, question_practice_detail.result from user_profile,question_practice_detail where user_profile.device_id=question_practice_detail.device_id and user_profile.university="浙江大学";
0
点赞
评论
收藏
分享
2021-11-01 15:12
门头沟学院 Java
题解 | #分组排序练习题#
select university,avg(question_cnt) as avg_question_cnt from user_profile group by university order by avg(question_cnt);
0
点赞
评论
收藏
分享
2021-11-01 15:06
门头沟学院 Java
题解 | #分组过滤练习题#
select university,avg(question_cnt) as avg_question_cnt, avg(answer_cnt) as avg_answer_cnt from user_profile group by university HAVING avg(question_cnt)<5 or AVG(answer_cnt)<20;
0
点赞
评论
收藏
分享
2021-11-01 15:00
门头沟学院 Java
题解 | #分组计算练习题#
select gender,university,count(id) as user_num, AVG(active_days_within_30) as avg_activate_day, avg(question_cnt) as avg_question_cnt from user_profile group by gender,university
0
点赞
评论
收藏
分享
2021-11-01 09:12
门头沟学院 Java
题解 | #计算男生人数以及平均GPA#
SELECT COUNT(gender) as male_num,AVG(gpa) as avg_gpa from user_profile where gender="male";
0
点赞
评论
收藏
分享
2021-11-01 09:06
门头沟学院 Java
题解 | #操作符混合运用#
select device_id,gender,age,university,gpa from user_profile where gpa>3.5 and university="山东大学" OR gpa>3.8 and university="复旦大学";
0
点赞
评论
收藏
分享
2021-11-01 08:08
门头沟学院 Java
题解 | #Where in 和Not in#
SELECT device_id,gender,age,university,gpa from user_profile where university in (SELECT university from user_profile where university="北京大学" or university="复旦大学" or university="山东大学");
0
点赞
评论
收藏
分享
2021-11-01 08:04
门头沟学院 Java
题解 | #高级操作符练习(2)#
select device_id,gender,age,university,gpa from user_profile where university="北京大学" or gpa>3.7;
0
点赞
评论
收藏
分享
1
10
11
12
13
14
15
关注他的用户也关注了:
牛客网
牛客企业服务