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

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

PROGRAMMING:Analysis of secondary pointer code

Luz5年前 (2021-05-10)527
```Analysis of secondary pointer codeint main(){static char *ps[]={"Java","C","Objective-C","C++","C#","PHP"};char **pps…

PROGRAMMING:Secondary pointer

Luz5年前 (2021-05-10)492
Analyze the following code to understand the secondary pointer.```#includeint main(){int n,*p,**pp;n=10; p=&n;…

PROGRAMMING:the first

Luz5年前 (2021-05-10)363
Using structure type, input the names of two students and the scores of high-level language, data structure and algorith…

PROGRAMMING:Structure type

Luz5年前 (2021-05-10)365
Analyze the following code to understand the use of struct types.```struct stu{int num;char name[20];char sex;double sco…

PROGRAMMING:Dynamic array (how much memory is required and how much memory is requested)

Luz5年前 (2021-05-10)383
Input integer n, then input n integers, and output these n integers in reverse order( Do not define the array, using dyn…

PROGRAMMING:Simple address book

Luz5年前 (2021-05-10)449
Program input integer n, and then enter the name and telephone number of n students. Finally, the output is in the form…

PROGRAMMING:Statistics average and fail

Luz5年前 (2021-05-10)352
Enter the integer n, and then enter the student number, name and grade of n students. The final output of the total scor…

PROGRAMMING:Struct pointer

Luz5年前 (2021-05-10)359
Analyze the following code to understand the structure pointer```#define FORMAT "Number=%d Name=%s Sex=%c Score=%lf\n"st…

PROGRAMMING:The structure pointer points to the structure array

Luz5年前 (2021-05-10)359
Code analysis, understand the structure pointer to the structure array```Output structure array with pointer variable, p…

PROGRAMMING:Achievement statistics

Luz5年前 (2021-05-10)403
```//Calculate the total score, average score and the number of failed students of a group.#includestruct stu{int num;ch…