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

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

PROGRAMMING:Count the number of words

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

PROGRAMMING:Two dimensional character array example

Luz5年前 (2021-05-10)391
```Please analyze the functions of the following programs. Understand 2D character arrays.#include#includeint main(){ ch…

PROGRAMMING:Pointer and address

Luz5年前 (2021-05-10)340
```Analyze the following code to understand the pointer and address.#includeint main(){int a=5,b=8,t;int *pa,*pb;pa=&a;…

PROGRAMMING:Code analysis of string function

Luz5年前 (2021-05-10)336
Please analyze the results of the following code, and discuss the specific string function usage involved in the program…

PROGRAMMING:Analysis of array comprehensive application code

Luz5年前 (2021-05-10)442
Please analyze the following code to understand the comprehensive application of array. If you want to pass this questio…

PROGRAMMING:Array comprehensive application training

Luz5年前 (2021-05-10)384
```Complete the following operations according to multiple commands entered:(1) I command: the input command is characte…

PROGRAMMING:Homogeneous squares

Luz5年前 (2021-05-10)446
Assume you have a square of size n that is divided into n × n positions just as a checkerboard. Two positions (x1,y1) an…

PROGRAMMING:Word order

Luz5年前 (2021-05-10)419
Program to read in a positive integer n (n ˂ 100), and then read in n words (no more than 40 characters). Sort these wor…

PROGRAMMING:Array name as parameter (pass pointer)

Luz5年前 (2021-05-10)399
Read in integer n, then read in n integers, store them in the array, sort them and output them. To sort an array, use a…

PROGRAMMING:Pointer and array

Luz5年前 (2021-05-10)467
Please analyze the following code to understand the relationship between pointer and array, pointer operation.```#includ…