首页
题库
面试
求职
学习
竞赛
More+
所有博客
搜索面经/职位/试题/公司
搜索
我要招人
去企业版
登录 / 注册
那我回去等通知了
广东技术师范大学
2019届
Java工程师
。
关注
私信
加入黑名单
举报TA
首页
刷题
圈子
项目
笔记
基本资料
真题试卷
在线编程
心理测试
回答的问题(25)
下面属于java合法变量名定义的是?
0
只有我以为B选项是 l 打头的么。。。。
发表于 2018-02-25 14:01:21
数组中重复的数字
0
public boolean duplicate(int numbers[],int length,int [] duplication) { if(numbers!=null){ if(numbers.length == length && ...
发表于 2018-02-23 21:59:50
把字符串转换成整数
0
public class Solution { public int StrToInt(String str) { if(str == null){ return 0; } int result = 0; boolean negative = false; int i=0,len=str.lengt...
发表于 2018-02-23 13:53:09
不用加减乘除做加法
0
public int Add(int num1,int num2){ if(0 == num2){ return num1; } int a = num1 ^ num2; int b = num1 & num2; return Add(a,,b...
发表于 2018-02-23 11:04:42
计算一年中的第几天
0
import java.util.Scanner; /** * 今年的第几天? 输入年、月、日,计算该天是本年的第几天。 * 比较麻烦的做法 */ public class TestCalDay { public static void main(String[] args) { ...
发表于 2018-02-13 16:11:27
首页
上一页
1
2
3
下一页
末页
扫描二维码,关注牛客网
意见反馈
下载牛客APP,随时随地刷题