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

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

PROGRAMMING:Sort by two numbers

Luz5年前 (2021-05-10)392
Input two integers and program to output from small to large.###Input example:```in8 5```###Output example:```out5 8```a…

PROGRAMMING:Sort by four numbers

Luz5年前 (2021-05-10)509
Program input four integers, output in the order of small to large.###Input example:```in1 4 3 2```###Output example:```…

PROGRAMMING:Odd even

Luz5年前 (2021-05-10)414
Programming input a positive integer, output it is odd or even###Input example:```infifty-five```###Output sample (odd n…

PROGRAMMING:Sort by three numbers

Luz5年前 (2021-05-10)433
Program input three integers, output in the order from small to large.###Input example:```in1 3 2```###Output example:``…

PROGRAMMING:triangle

Luz5年前 (2021-05-10)413
Input the length of three line segments (integer), according to whether it can form a triangle, output one of the follow…

PROGRAMMING:Days of a month

Luz5年前 (2021-05-10)474
Program input year and month, output this month of the year how many days.###Input example:```in2015 10```###Output exam…

PROGRAMMING:Quadratic equation of one variable

Luz5年前 (2021-05-10)577
The program outputs the root of the quadratic equation $$ax ^ 2 + BX + C = 0 $$. The values of the coefficients a, B, C…

PROGRAMMING:What day

Luz5年前 (2021-05-10)386
Program input year, month, day three integers (guarantee is legal date), output this day is the first day of the year.##…

PROGRAMMING:Output grade

Luz5年前 (2021-05-10)489
```Characters are used to represent the level of achievement. A represents [90-100], B represents [80-90], C represents…

PROGRAMMING:Output score

Luz5年前 (2021-05-10)500
```The characters are used to represent the achievement level, and a represents [90-100], B represents [80-90], and a re…