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

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

PROGRAMMING:Function returns whether an integer is palindrome

Luz5年前 (2021-05-10)441
Write a function to return whether the formal parameter (a positive integer) is palindrome number (number with the same…

PROGRAMMING:Function returns the inverse ordinal of an integer

Luz5年前 (2021-05-10)429
Write a function to return the inverse ordinal of a formal parameter (a positive integer). The main function is: input a…

PROGRAMMING:Function to return whether an integer is complete

Luz5年前 (2021-05-10)428
Write a function to return whether the formal parameter (a positive integer) is a complete number. The main function is:…

PROGRAMMING:Function returns whether a date is a legal date

Luz5年前 (2021-05-10)318
Write a function. The formal parameter is three integers representing month, year and day. The function returns whether…

PROGRAMMING:Function returns whether a date is palindrome date

Luz5年前 (2021-05-10)406
Write a function that returns whether a date is palindrome date. Palindrome date should be legal date first, and then th…

PROGRAMMING:Recursive factorial

Luz5年前 (2021-05-10)332
Input a positive integer n value (n does not exceed 20), programming output n( N). Please define the integer in the prog…

PROGRAMMING:Write a function to output a decimal integer in binary form

Luz5年前 (2021-05-10)387
Write function, function parameter is integer n, in the function output integer N binary form. The main function inputs…

PROGRAMMING:Recursive function for finding the maximum divisor by Division

Luz5年前 (2021-05-10)369
Write a function. The formal parameters of the function are two positive integers a and B. the function returns the grea…

PROGRAMMING:Recursive realization of continuous integer sum function

Luz5年前 (2021-05-10)464
Write a function whose formal parameters are two integers a and B (0 ˂ a ˂ = b), and return the sum of all integers betw…

PROGRAMMING:Recursive implementation of the n-th item of Fibonacci sequence

Luz5年前 (2021-05-10)365
Write a function to return the value of the nth item of Fibonacci sequence, which is realized by recursive method. In th…