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

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

PROGRAMMING:Some inputs are ignored

Luz5年前 (2021-05-10)458
```Case 03-02-04 some inputs ignoredCase code 03-02-04. C#includeint main(){int a,b;scanf("%d%*d%*2d%d",&a,&b);printf("a…

PROGRAMMING:Output the sum of several numbers

Luz5年前 (2021-05-10)447
Programming input at least 1, up to 4 integers, output their sum.```Input sample 1:5 6 7 8 output sample 1:26Input sampl…

PROGRAMMING:Input customization

Luz5年前 (2021-05-10)406
The input data is a series of numbers, which requires reading five numbers, but requires you to only process the first,…

PROGRAMMING:Count three numbers

Luz5年前 (2021-05-10)398
Program input three integers, output the sum and average of the three integers.###Output format:One integer (sum), one r…

PROGRAMMING:The return value of the scanf function

Luz5年前 (2021-05-10)401
Input up to two integers, if the input is an integer, output its square, if the input is two integers, output their prod…

PROGRAMMING:Triangle area (Helen formula)

Luz5年前 (2021-05-10)495
Input the length a, B, C of the three sides of the triangle, and output its area s (assuming that the user's input a, B,…

PROGRAMMING:Quadratic equation with one variable (with real roots)

Luz5年前 (2021-05-10)427
Input the values of three coefficients a, B and C of quadratic equation of one variable, and output its two roots (assum…

PROGRAMMING:4 digits in reverse order

Luz5年前 (2021-05-10)360
Input a 4-bit positive integer and output its reverse order number.#####Input example:```inone thousand and two hundred`…

PROGRAMMING:toggle case

Luz5年前 (2021-05-10)380
Enter a letter (upper or lower case) and output its corresponding letter (lower or upper case).###Input example:```inA``…

PROGRAMMING:Output absolute value

Luz5年前 (2021-05-10)395
Input an integer and program to output its absolute value.###Input example:Here is a set of inputs. For example:```in-29…