当前位置:首页
> Luz 第2767页
Luz 管理员
暂无介绍
89860 篇文章 33 次评论PROGRAMMING:Credit difference (*)
This semester, Xiao Zhang completed $$Z $$credits and Xiao Wang completed $$W $$credits. How many credits is the differe…
PROGRAMMING:Matching pi
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
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
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
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
Define a person class including name to complete the nonparametric construction method in the person class, set the…
PROGRAMMING:Base sequence matching
The geography project is a collaborative research project between IBM and the National Geographic Society to analyze how…
PROGRAMMING:minimum
there are there integer,find the minimum number### Input:there integer.###Output:the minimum value.### ExampleInput```in…
PROGRAMMING:A+B
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
Output the number of bytes of long and int.###Input example:```inThere is no input.```###Output example:```out8 4```answ…