-->
当前位置:首页 > Luz 第668页
Luz

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

编程题:Dripping Water Wears Through a Stone

Luz3年前 (2022-11-26)704
编程题:Dripping Water Wears Through a Stone
Dripping water wears away stone is an idiom, which originated from the 《Chinese book • Meicheng biography》by Ban Gu of t…

编程题:Assign Cookies

Luz3年前 (2022-11-26)643
Assume you are an awesome parent and want to give your children some cookies. But, you should give each child at most on…

编程题:Integer Solution

Luz3年前 (2022-11-26)693
There are two integers $x$ and $y$. The sum of $x$ and $y$ equals an integer $n$ and $x$ multiplied by $y$ equal to anot…

编程题:A Mathematical Curiosity

Luz3年前 (2022-11-26)640
Given two integers n and m, count the number of pairs of integers $(a,b)$ such that $0 < a < b < n$ and $(a^2+b…

编程题:Segment Tree

Luz3年前 (2022-11-26)673
Today HH is learning a new data structure named segment tree, which is often used to solve segment problem, here comes…

编程题:Factor Difference

Luz3年前 (2022-11-26)787
Cuber QQ is finding the minimal interesting number. An interesting number $x$ satisfies:$x$ is a positive integer;$x$ ha…

编程题:Here, Sign In

Luz3年前 (2022-11-26)755
In geometry, a cuboid is a convex polyhedron bounded by six quadrilateral faces, whose polyhedral graph is the same as t…

编程题:Rabbit

Luz3年前 (2022-11-26)620
What a cute rabbit! Mr.Gree has a lot of cute rabbits in the farm, and every rabbit has a number $a_1, a_2, a_3...a_n$.…

编程题:Apple

Luz3年前 (2022-11-26)672
There are a box of apples,which contains N apples. You're going to give them to M person. It is required that everyone m…

填空题:递归函数

Luz3年前 (2022-11-26)1155
void fun(int n,int k){ if(n) { printf("<1:%d>",n%k); fun(n/k,k); printf("{2:%d}",n%k); }}执行函数fun(35,7)的输出结果是。执行…