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

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

PROGRAMMING:Fahrenheit to centigrade

Luz5年前 (2021-05-10)422
Convert Fahrenheit to centigrade (where C is centigrade and F is Fahrenheit).c=5/9 (f-32)###Input format:Enter a real nu…

PROGRAMMING:Output one digit

Luz5年前 (2021-05-10)394
Input an arbitrary integer and output its bits.###Input format:Enter an integer directly without any additional characte…

PROGRAMMING:Square root of integer

Luz5年前 (2021-05-10)448
Input an integer x from the keyboard. If x is a positive number, then output its square root. Negative numbers are not c…

PROGRAMMING:Sum of three integers

Luz5年前 (2021-05-10)464
Input three integers to sum and output.###Input format:Enter three integers on a line, separated by a space, without any…

PROGRAMMING:Output your numbers

Luz5年前 (2021-05-10)383
Given a three digit positive integer, output its hundred digit, ten digit and one digit.###Input format:Enter a three di…

PROGRAMMING:Maximum of two integers

Luz5年前 (2021-05-10)343
Find the maximum value of two integers a and B, and store the result in max.###Input format:Enter two integers on a line…

PROGRAMMING:Judge whether a triangle is formed

Luz5年前 (2021-05-10)393
Input the three sides of the triangle to judge whether it can form a triangle. If it can output yes, otherwise it will o…

PROGRAMMING:Find 1 + 2 + 3 + 4 + 5

Luz5年前 (2021-05-10)371
Find the sum of 1 + 2 + 3 + 4 + 5.###Output format:Directly output the result of integer operation without any additiona…

PROGRAMMING:Is it 3 digits

Luz5年前 (2021-05-10)390
Input a positive integer, if it is 3 digits, then output yes, otherwise output No.###Input format:Enter a positive integ…

PROGRAMMING:Absolute value of integer

Luz5年前 (2021-05-10)585
Input an integer from the keyboard and output its corresponding absolute value. It is required that mathematical functio…