niithub

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2016年8月23日

摘要: 题目描述 有一分数序列:2/1、3/2、5/3、8/5、13/8、21/13......。求出这个数列的前N项之和,保留两位小数。 输入描述 N 输出描述 数列前N项和 样例 输入: 10 输出: 16.48 第一次code: 使用递归: 1 import java.util.*; 2 import 阅读全文
posted @ 2016-08-23 23:24 niithub 阅读(209) 评论(0) 推荐(0) 编辑

摘要: 2520 is the smallest number that can be divided by each of the numbers from 1 to 10 without any remainder. What is the smallest positive number that i 阅读全文
posted @ 2016-08-23 23:23 niithub 阅读(129) 评论(0) 推荐(0) 编辑

摘要: 给定一个已经升序排好序的数组,以及一个数 targettargettarget,如果 targettargettarget 在数组中,返回它在数组中的位置。 否则,返回 targettargettarget 插入数组后它应该在的位置。 假设数组中没有重复的数。以下是简单的示例: [1,3,5,6], 阅读全文
posted @ 2016-08-23 15:10 niithub 阅读(172) 评论(0) 推荐(0) 编辑