当前位置:首页
> Luz 第2734页
Luz 管理员
暂无介绍
89860 篇文章 33 次评论PROGRAMMING:Welcome message
According to the input name, output welcome information.###Input format:Enter the name (a string no more than 20 long an…
PROGRAMMING:Find the maximum
Judge the maximum of five numbers###Input format:Enter 5 integers to get the maximum number. Process to end of file###Ou…
PROGRAMMING:Grade conversion
When the score of the hundred point system is converted to the five level scoring system, the score above 90 is a, 80-89…
PROGRAMMING:Triangle judgment
Input three sides to judge whether a triangle can be formed.###Input format:Input 1 group of data, each group of three i…
PROGRAMMING:Finding the area of a circle
Find the area of a circle. PI is defined as 3.14159.###Input format:Enter several radii R###Output format:The circle are…
PROGRAMMING:Find the number of days in a month
Enter the year and month to find the days of the month. The rule of leap year is that the year that can be divided by 4…
PROGRAMMING:Please n!
1! = one2! = 1*23! = 1*2*3n! = 1*2*3*4.....*n###Input format:The input data first contains an integer T, which repre…
PROGRAMMING:Convert numeric string to numeric
Convert an integer character (no more than 9 bits) string into an integer (Note: string can't carry out four arithmetic…
PROGRAMMING:Han Soldiers
"Chinese Remainder Theorem" is also called "ghost Valley calculation", also known as "partition calculation"; Yang Hui c…
PROGRAMMING:Finding all factors of natural numbers
Write a function to find out all factors of a natural number, so that the natural number is equal to the product of all…