牛牛在旅行中经过了一些节点,它注意到,这些节点的值不是随机的,而是有一定的规律:每个节点的值都是其前两个节点值的和。牛牛非常好奇,若是他知道了前两个节点的值,那么第n个节点的值是多少? 请你帮助牛牛实现一个函数,这个函数接收前两个节点的值和一个整数n,返回第n个节点的值。
示例1
输入
1,1,6
输出
8
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param first int整型 * @param second int整型 * @param n int整型 * @return int整型 */ public int findNthValue (int first, int second, int n) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param first int整型 * @param second int整型 * @param n int整型 * @return int整型 */ int findNthValue(int first, int second, int n) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param first int整型 # @param second int整型 # @param n int整型 # @return int整型 # class Solution: def findNthValue(self , first , second , n ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param first int整型 * @param second int整型 * @param n int整型 * @return int整型 */ public int findNthValue (int first, int second, int n) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param first int整型 * @param second int整型 * @param n int整型 * @return int整型 */ function findNthValue( first , second , n ) { // write code here } module.exports = { findNthValue : findNthValue };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param first int整型 # @param second int整型 # @param n int整型 # @return int整型 # class Solution: def findNthValue(self , first: int, second: int, n: int) -> int: # write code here
package main import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param first int整型 * @param second int整型 * @param n int整型 * @return int整型 */ func findNthValue( first int , second int , n int ) int { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param first int整型 * @param second int整型 * @param n int整型 * @return int整型 */ int findNthValue(int first, int second, int n ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param first int整型 # @param second int整型 # @param n int整型 # @return int整型 # class Solution def findNthValue(first, second, n) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param first int整型 * @param second int整型 * @param n int整型 * @return int整型 */ def findNthValue(first: Int,second: Int,n: Int): Int = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param first int整型 * @param second int整型 * @param n int整型 * @return int整型 */ fun findNthValue(first: Int,second: Int,n: Int): Int { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param first int整型 * @param second int整型 * @param n int整型 * @return int整型 */ public int findNthValue (int first, int second, int n) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param first int整型 * @param second int整型 * @param n int整型 * @return int整型 */ export function findNthValue(first: number, second: number, n: number): number { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param first int整型 * @param second int整型 * @param n int整型 * @return int整型 */ func findNthValue ( _ first: Int, _ second: Int, _ n: Int) -> Int { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param first int整型 * @param second int整型 * @param n int整型 * @return int整型 */ pub fn findNthValue(&self, first: i32, second: i32, n: i32) -> i32 { // write code here } }
1,1,6
8