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

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

PROGRAMMING:Snake number matrix

Luz5年前 (2021-05-10)492
Program input a positive integer n (n ˂ 15), output n order snake number matrix, output format see example.###Input exam…

PROGRAMMING:Spiral matrix

Luz5年前 (2021-05-10)386
The so-called "spiral square matrix" means that for any given n, 1 to n × The number of N starts from the first grid in…

PROGRAMMING:Matrix multiplication

Luz5年前 (2021-05-10)434
The following procedure is to add matrix A and matrix B to get matrix C, and then output the elements of matrix C by row…

PROGRAMMING:Matrix addition

Luz5年前 (2021-05-10)527
The following procedure is to add matrix A and matrix B to get matrix C, and then output the elements of matrix C by row…

PROGRAMMING:Yanghui triangle

Luz5年前 (2021-05-10)406
Program input a positive integer n and output the first n lines of Yang Hui triangle. Realize with two-dimensional array…

PROGRAMMING:Word encryption

Luz5年前 (2021-05-10)441
```Program to read in a number of English words (no more than 80 characters, all uppercase), encryption and output in tu…

PROGRAMMING:vowel

Luz5年前 (2021-05-10)423
```The letters a, e, I, O and u are considered to be vowels. The following program outputs the string tFor the number of…

PROGRAMMING:Character array traversal

Luz5年前 (2021-05-10)396
Analyze the following code to understand the traversal method of character array and string.```#includeint main(){char s…

PROGRAMMING:Password test

Luz5年前 (2021-05-10)427
The function of the program is to first input the password string pass of a system_ STR, and then you keep typing your p…

PROGRAMMING:Or statistical words

Luz5年前 (2021-05-10)375
For a sentence string (no more than 100 characters), all characters do not contain any punctuation, and words are separa…