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

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

PROGRAMMING:Quadratic equation of one variable

Luz5年前 (2021-05-10)401
Input three coefficients to find the solution of quadratic equation with one variable, and output all possible cases, in…

PROGRAMMING:You answer the question by computer

Luz5年前 (2021-05-10)411
Enter a four arithmetic expression (add, subtract, multiply, divide) in the form of a + B to represent the question you…

PROGRAMMING:Piecewise function

Luz5年前 (2021-05-10)464
The definition of known function y is as follows: program input x, input y. If x exceeds the definition, output: no defi…

PROGRAMMING:Output divisor

Luz5年前 (2021-05-10)426
Program input a positive integer, output all its divisors.###Input example:```inone hundred```###Output example:```out1…

PROGRAMMING:Outputs the sum of 1 to n

Luz5年前 (2021-05-10)361
Outputs the sum of 1 to n###Input format:An integer n.###Output format:And.###Input example:```inten```###Output example…

PROGRAMMING:Iteration of radical 2

Luz5年前 (2021-05-10)387
There is an iterative formula: $$X_ n=\sqrt {x_{ N-1} + 2} $$, no matter how large the initial value (positive number) o…

PROGRAMMING:Output least common multiple

Luz5年前 (2021-05-10)358
Input two numbers and output their least common multiple.###Input example:```in36 24```###Output example:```outseventy-…

PROGRAMMING:Fibonacci sequence

Luz5年前 (2021-05-10)355
The general formula of Fibonacci sequence is as follows:![ 3333333333.png](~/ca64eb62-b3d8-4f18-ba2c-61783a4d05d5.png)Th…

PROGRAMMING:Prime judgment

Luz5年前 (2021-05-10)313
Enter a positive integer and output whether it is a prime.###Input example:```infifteen```###Output example:```outNO```#…

PROGRAMMING:Output greatest common divisor

Luz5年前 (2021-05-10)450
Input two numbers and output their greatest common divisor.###Input example:```in36 24```###Output example:```outtwelve`…