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

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

PROGRAMMING:Initialization of one dimensional array

Luz5年前 (2021-05-10)532
```Analyze the following code to understand the array initialization operation.#includeint main(){int a[10]={},i;int b[1…

PROGRAMMING:Output alphabet - array traversal

Luz5年前 (2021-05-10)362
Analyze the following code to understand array traversal.```#includeint main(){char c[26],i;for(i=0; i˂26; i++) c[i]='A…

PROGRAMMING:Output the nth prime

Luz5年前 (2021-05-10)400
Program to find out the first 100 primes stored in the array, and then enter an integer n, output the value of the nth p…

PROGRAMMING:One dimensional array reverse order output

Luz5年前 (2021-05-10)400
Programming defines an integer array with 20 elements, traverses once, assigns the value of the array elements to the sq…

PROGRAMMING:Number of triangles

Luz5年前 (2021-05-10)419
It is said that mathematicians of the Pythagorean School in ancient Greece (about 570-500 BC) often studied mathematical…

PROGRAMMING:Affinity number pair

Luz5年前 (2021-05-10)414
The program reads in two positive integers a and B and outputs all affinity pairs in the interval [a, b]. The meaning of…

PROGRAMMING:Inversion of array elements

Luz5年前 (2021-05-10)344
Program to read 10 integers into the array, output in positive order, reset the array elements in reverse order, and the…

PROGRAMMING:Array maximum

Luz5年前 (2021-05-10)474
Write a function that returns the maximum value in the array.Input 10 integers in the main function, store them in the a…

PROGRAMMING:New rules of campus singer competition

Luz5年前 (2021-05-10)402
Contestant No. 8 participated in the campus singer competition, programmed to read in 20 integers (between 0-100) and st…

PROGRAMMING:Array transformation -- one after another

Luz5年前 (2021-05-10)433
Write a function to transform the formal parameter array. The rule is that elements with odd subscript become twice of t…