当前位置:首页
> Luz 第2671页
Luz 管理员
暂无介绍
89860 篇文章 33 次评论PROGRAMMING:Fahrenheit to centigrade
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
Input an arbitrary integer and output its bits.###Input format:Enter an integer directly without any additional characte…
PROGRAMMING:Square root of integer
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
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
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
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
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
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
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
Input an integer from the keyboard and output its corresponding absolute value. It is required that mathematical functio…