当前位置:首页
> Luz 第2993页
Luz 管理员
暂无介绍
89860 篇文章 33 次评论PROGRAMMING:Some inputs are ignored
```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
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
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
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
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)
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)
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
Input a 4-bit positive integer and output its reverse order number.#####Input example:```inone thousand and two hundred`…
PROGRAMMING:toggle case
Enter a letter (upper or lower case) and output its corresponding letter (lower or upper case).###Input example:```inA``…
PROGRAMMING:Output absolute value
Input an integer and program to output its absolute value.###Input example:Here is a set of inputs. For example:```in-29…