NC233243. 数数
描述
从前有座山,山里有座庙,庙里有个老和尚在给小和尚讲故事,讲的是从前有座山,山里有座庙,庙里有个老和尚在给小和尚讲故事,讲的是从前有座山,山里有座庙,庙里有个老和尚在给小和尚讲故事,讲的是...
咦我们的角度看来,他属于是无限递归
现在想请你计算下面这个程序 递归层之后等于多少(是全局变量)
C版(java版)
void dfs(int cnt){//cnt从1开始 如同dfs(1) for(int i=1;i<=cnt;i++)ans++; dfs(cnt+2); }python版
def dfs(cnt): for i in range(1,cnt+1): ans++; dfs(cnt+2) 同上 从dfs(1)进入
输入描述
输入一个数
输出描述
输出一个整数
示例1
输入:
2
输出:
4
Java 解法, 执行用时: 40ms, 内存消耗: 10704K, 提交时间: 2023-08-14 11:09:59
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); long x = in.nextInt(); System.out.println(x * x); } }
Python3 解法, 执行用时: 41ms, 内存消耗: 4492K, 提交时间: 2023-08-13 14:44:41
print(int(input())**2)