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

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

PROGRAMMING:maximum of array

Luz5年前 (2021-05-10)601
Input 10 integers and output the maximum### Input:10 integers seperated by space.### Output:One integer which is the max…

PROGRAMMING:Find the most frequent character in a string

Luz5年前 (2021-05-10)559
Find the most frequent character in a string.###Input format:Given a string, the length of the string is not greater tha…

PROGRAMMING:+-*/

Luz5年前 (2021-05-10)609
Write a program to realize the basic arithmetic operation. Input two numbers and an operator(‘+’, ‘-’ , ‘*’, ‘/’), calcu…

PROGRAMMING:Sum of continuous prime numbers

Luz5年前 (2021-05-10)390
Some positive integers can be decomposed into the sum of one or more consecutive primes. Given a positive integer, how m…

PROGRAMMING:Sum of numbers (Cixi, 2006)

Luz5年前 (2021-05-10)382
Give you an integer n (n < = 2000000000), and find the sum of all the numbers of this number.###Input format:The input h…

PROGRAMMING:sort

Luz5年前 (2021-05-10)480
Today, Xiao Lin encountered a problem. He needs to sort n groups of data, which is stored in a linked list. Now Kobayash…

PROGRAMMING:average life span

Luz5年前 (2021-05-10)552
Fill in the blanks. According to the requirements of the title, improve the following code. Please submit the complete c…

PROGRAMMING:mm-dd-yyyy to yyyy-mm-dd

Luz5年前 (2021-05-10)602
American usually use day-month-year, but Chinese often use year-month-day. Please write a program to transfer the date f…

PROGRAMMING:pi

Luz5年前 (2021-05-10)365
Calculate the approximate value of π using the following formula, until the last item ˂10-6pi/4 ~= 1- 1/3 + 1/5 -1/7 +…

PROGRAMMING:Implementing KMP with JMU DS

Luz5年前 (2021-05-10)426
Give two strings a and B, and find out the position where B first appears from a.###Input format:Enter an integer n in t…