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

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

PROGRAMMING:Credit difference (*)

Luz5年前 (2021-05-10)469
This semester, Xiao Zhang completed $$Z $$credits and Xiao Wang completed $$W $$credits. How many credits is the differe…

PROGRAMMING:Matching pi

Luz5年前 (2021-05-10)548
Using KMP algorithm to realize string matching, you must be familiar with it in class, but let's talk about PI first. So…

PROGRAMMING:Find the number of numbers that can be divided by 3 or 5 or 7 in the specified interval

Luz5年前 (2021-05-10)569
Input 2 positive integers a and B (a ˂ = B and not beyond the range of 32-bit signed integers) from the keyboard, and ou…

PROGRAMMING:String segmentation and splicing

Luz5年前 (2021-05-10)395
Many people complain that strings in C are too difficult to use and that their interfaces are too old. For example, stri…

PROGRAMMING:leap year

Luz5年前 (2021-05-10)582
Leap year judgment, the rule is that the year can be divided by 4 but not 100, or the year can be divided by 400 is leap…

PROGRAMMING:Arrays and objects

Luz5年前 (2021-05-10)376
Define a person class including name to complete the nonparametric construction method in the person class, set the…

PROGRAMMING:Base sequence matching

Luz5年前 (2021-05-10)597
The geography project is a collaborative research project between IBM and the National Geographic Society to analyze how…

PROGRAMMING:minimum

Luz5年前 (2021-05-10)440
there are there integer,find the minimum number### Input:there integer.###Output:the minimum value.### ExampleInput```in…

PROGRAMMING:A+B

Luz5年前 (2021-05-10)461
Caculate the sum of A and B.### Input:two integer A and B.### Output:the result of A+B.### Input:```in3 5```### Output:`…

PROGRAMMING:Test long bytes

Luz5年前 (2021-05-10)380
Output the number of bytes of long and int.###Input example:```inThere is no input.```###Output example:```out8 4```answ…