首页 > 其他分享 >实验4

实验4

时间:2024-11-10 20:50:50浏览次数:1  
标签:return int void printf ++ 实验 ans

任务1

 1 #include <stdio.h>
 2 #define N 4
 3 #define M 2
 4 
 5 void test1() {
 6     int x[N] = {1, 9, 8, 4};          
 7     int i;
 8 
 9     printf("sizeof(x) = %d\n", sizeof(x));
10 
11     for (i = 0; i < N; ++i)
12         printf("%p: %d\n", &x[i], x[i]);
13 
14     printf("x = %p\n", x); 
15 }
16 
17 void test2() {
18     int x[M][N] = {{1, 9, 8, 4}, {2, 0, 4, 9}};
19     int i, j;
20 
21     printf("sizeof(x) = %d\n", sizeof(x));
22 
23     for (i = 0; i < M; ++i)
24         for (j = 0; j < N; ++j)
25             printf("%p: %d\n", &x[i][j], x[i][j]);
26     printf("\n");
27 
28     printf("x = %p\n", x);
29     printf("x[0] = %p\n", x[0]);
30     printf("x[1] = %p\n", x[1]);
31     printf("\n");
32 }
33 
34 int main() {
35     printf("测试1: int型一维数组\n");
36     test1();
37 
38     printf("\n测试2: int型二维数组\n");
39     test2();
40 
41     return 0;
42 }

问题1:是连续存放的。一样。

问题2:是按行连续存放的。一样。相差4,意思是相差了一个int类型的数据的大小,即4字节。

 

任务2

 1 #include <stdio.h>
 2 #define N 100
 3 
 4 
 5 void input(int x[], int n);
 6 double compute(int x[], int n);
 7 
 8 int main() {
 9     int x[N];
10     int n, i;
11     double ans;
12 
13     while(printf("Enter n: "), scanf("%d", &n) != EOF) {
14         input(x, n);            
15         ans = compute(x, n);   
16         printf("ans = %.2f\n\n", ans);
17     }
18 
19     return 0;
20 }
21 
22 
23 void input(int x[], int n) {
24     int i;
25 
26     for(i = 0; i < n; ++i)
27         scanf("%d", &x[i]);
28 }
29 
30 
31 double compute(int x[], int n) {
32     int i, high, low;
33     double ans;
34 
35     high = low = x[0];
36     ans = 0;
37 
38     for(i = 0; i < n; ++i) {
39         ans += x[i];
40 
41         if(x[i] > high)
42             high = x[i];
43         else if(x[i] < low)
44             low = x[i];
45     }
46 
47     ans = (ans - high - low)/(n-2);
48 
49     return ans;
50 }

形参书写:int x[];    实参书写:已定义的数组名

input的功能:读入数据。  compute功能:就算去掉最大值和最小值后的平均数。

 

 

任务3

 1 #include <stdio.h>
 2 #define N 100
 3 
 4 void output(int x[][N], int n);
 5 void init(int x[][N], int n, int value);
 6 
 7 int main() {
 8     int x[N][N];
 9     int n, value;
10 
11     while(printf("Enter n and value: "), scanf("%d%d", &n, &value) != EOF) {
12         init(x, n, value);  
13         output(x, n);       
14         printf("\n");
15     }
16 
17     return 0;
18 }
19 
20 
21 void output(int x[][N], int n) {
22     int i, j;
23 
24     for(i = 0; i < n; ++i) {
25         for(j = 0; j < n; ++j)
26             printf("%d ", x[i][j]);
27         printf("\n");
28     }
29 }
30 
31 
32 void init(int x[][N], int n, int value) {
33     int i, j;
34 
35     for(i = 0; i < n; ++i)
36         for(j = 0; j < n; ++j)
37             x[i][j] = value;
38 }

问题1:第二维

问题2:output功能是输出数组。init功能是将数组中每一个单元存放的都变成value的值。

 

任务4

 1 #include <stdio.h>
 2 #define N 100
 3 
 4 double median(int x[],int );
 5 void input(int x[],int ); 
 6 
 7 int main() {
 8     int x[N];
 9     int n;
10     double ans;
11 
12     while(printf("Enter n: "), scanf("%d", &n) != EOF) {
13         input(x,n);
14         ans = median(x, n);
15         printf("ans = %g\n\n", ans);
16     }
17 
18     return 0;
19 }
20 
21 void input(int x[],int n){
22     int i;
23     for(i=0;i<n;i++){
24         scanf("%d",&x[i]);
25     }
26 
27 }
28 
29 double median(int x[],int n){
30     double ans;
31     int i,j;
32     
33     for(i=0;i<n-1;i++){
34         for(j=0;j<n-1-i;j++){
35             if(x[j]>x[j+1]){
36                 x[j]=x[j]+x[j+1];
37                 x[j+1]=x[j]-x[j+1];
38                 x[j]=x[j]-x[j+1];    
39             }
40         }
41     }
42     
43     if(n%2==0){
44         ans=(double)(x[n/2]+x[n/2-1])/2;
45     }
46     else
47         ans=(double)x[(n-1)/2];
48     
49     return ans;
50 }

 

 

任务5

 1 #include <stdio.h>
 2 #define N 100
 3 
 4 void input(int x[][N], int n);
 5 void output(int x[][N], int n);
 6 void rotate_to_right(int x[][N],int n);
 7 
 8 int main() {
 9     int x[N][N];
10     int n;
11 
12     printf("输入n: "); 
13     scanf("%d", &n);
14     input(x, n);
15 
16     printf("原始矩阵:\n");
17     output(x, n);
18 
19     rotate_to_right(x,n);
20 
21     printf("变换后矩阵:\n");
22     output(x, n);
23 
24     return 0;
25 }
26 
27 
28 void input(int x[][N], int n) {
29     int i, j;
30     
31     for (i = 0; i < n; ++i) {
32         for (j = 0; j < n; ++j)
33             scanf("%d", &x[i][j]);
34     }
35 }
36 
37 
38 void output(int x[][N], int n) {
39     int i, j;
40 
41     for (i = 0; i < n; ++i) {
42         for (j = 0; j < n; ++j)
43             printf("%4d", x[i][j]);
44 
45         printf("\n");
46     }
47 }
48 
49 // 函数rotate_to_right定义
50 // 功能: 把一个n*n的矩阵x,每一列向右移, 最右边被移出去的一列绕回左边
51 // 待补足
52 // xxx
53 void rotate_to_right(int x[][N],int n) {
54     const int m=n;
55     int temp[m];
56     int i,j;
57     for(i=0;i<n;i++){
58         temp[i]=x[i][n-1];
59     }
60     
61     for(i=0;i<n;i++){
62         for(j=n-2;j>=0;j--){
63             x[i][j+1]=x[i][j];
64             
65         }
66     }
67     
68     for(i=0;i<n;i++){
69         x[i][0]=temp[i];
70     }
71     
72 
73 }

 

 任务6

 1 #include <stdio.h>
 2 #define N 100
 3 
 4 void dec_to_n(int x, int n); // 函数声明
 5 
 6 int main() {
 7     int x;
 8 
 9     while(printf("输入十进制整数: "), scanf("%d", &x) != EOF) {
10         dec_to_n(x, 2);  // 函数调用: 把x转换成二进制输出
11         dec_to_n(x, 8);  // 函数调用: 把x转换成八进制输出
12         dec_to_n(x, 16); // 函数调用: 把x转换成十六进制输出
13 
14         printf("\n");
15     }
16 
17     return 0;
18 }
19 
20 void dec_to_n(int x, int n) {
21     int a[100];
22     int count = 0;
23     int i, ans;
24     while (x!= 0) {
25         a[count] = x % n;
26         x = x / n;
27         count++;
28     }
29     for (i = count - 1; i >= 0; i--) {
30         if (a[i] < 10) {
31             printf("%d", a[i]);
32         } else {
33             printf("%c", a[i] - 10 + 'A');
34         }
35     }
36     printf("\n");
37 }

 

 

任务7

  1 #include <stdio.h>
  2 #define N 100
  3 
  4 void input(int x[][N], int n);
  5 void output(int x[][N], int n);
  6 int is_magic(int x[][N], int n);
  7 
  8 int main() {
  9     int x[N][N];
 10     int n;
 11 
 12     while(printf("输入n: "), scanf("%d", &n) != EOF) {
 13         printf("输入方阵:\n");  
 14         input(x, n); 
 15 
 16         printf("输出方阵:\n");  
 17         output(x, n);   
 18 
 19         if(is_magic(x, n))
 20             printf("是魔方矩阵\n\n");
 21         else
 22             printf("不是魔方矩阵\n\n");
 23     }
 24 
 25     return 0;
 26 }
 27 
 28 // 函数定义
 29 // 功能: 输入一个n*n的矩阵x
 30 void input(int x[][N], int n) {
 31     int i, j;
 32     
 33     for (i = 0; i < n; ++i) {
 34         for (j = 0; j < n; ++j)
 35             scanf("%d", &x[i][j]);
 36     }
 37 }
 38 
 39 // 功能: 输出一个n*n的矩阵x
 40 void output(int x[][N], int n) {
 41     int i, j;
 42 
 43     for (i = 0; i < n; ++i) {
 44         for (j = 0; j < n; ++j)
 45             printf("%4d", x[i][j]);
 46 
 47         printf("\n");
 48     }
 49 }
 50 
 51 
 52 int is_magic(int x[][N], int n){
 53     int i = 0;
 54     int j = 0;
 55     int sum1[100] = {0};
 56     int sum2[100] = {0};
 57     int sum3 = 0;
 58     int sum4 = 0;
 59 
 60     // 行
 61     for (i = 0; i < n; i++) {
 62         for (j = 0; j < n; j++) {
 63             sum1[i] += x[i][j];
 64         }
 65     }
 66 
 67     // 列
 68     for (j = 0; j < n; j++) {
 69         for (i = 0; i < n; i++) {
 70             sum2[j] += x[i][j];
 71         }
 72     }
 73 
 74     // 主对角线
 75     for (i = 0; i < n; i++) {
 76         sum3 += x[i][i];
 77     }
 78 
 79     // 副对角线
 80     for (i = 0; i < n; i++) {
 81         sum4 += x[i][n - 1 - i];
 82     }
 83 
 84     int temp = sum1[0];
 85     for (i = 1; i < n; i++) {
 86         if (sum1[i]!= temp) {
 87             return 0;
 88         }
 89     }
 90 
 91     int tempCol = sum2[0];
 92     if (tempCol!= temp) {
 93         return 0;
 94     }
 95     for (j = 1; j < n; j++) {
 96         if (sum2[j]!= tempCol) {
 97             return 0;
 98         }
 99     }
100 
101     if (sum3!= temp || sum4!= temp) {
102         return 0;
103     }
104 
105     return 1;
106 }

 

标签:return,int,void,printf,++,实验,ans
From: https://www.cnblogs.com/wl123456/p/18536243

相关文章

  • 20222409 2024-2025-1 《网络与系统攻防技术》实验四实验报告
    1.实验内容1.1本周学习内容本周学习了恶意代码分析的基本方法,静态分析和动态分析的核心概念。静态分析主要通过代码结构和API调用等特征来识别恶意行为,动态分析则使用沙箱等环境运行代码,观察其行为。通过实验学习了IDAPro和ProcessMonitor等工具的基本操作。1.2实践内容......
  • 图像处理实验二(Image Understanding and Basic Processing)
            ......
  • 20222319 2024-2025-1 《网络与系统攻防技术》实验四实验报告
    1.实验要求1.1实验内容一、恶意代码文件类型标识、脱壳与字符串提取对提供的rada恶意代码样本,进行文件类型识别,脱壳与字符串提取,以获得rada恶意代码的编写作者,具体操作如下:(1)使用文件格式和类型识别工具,给出rada恶意代码样本的文件格式、运行平台和加壳工具;(2)使用超级巡警脱壳......
  • 实验三
    任务一button.hpp#pragmaonce#include<iostream>#include<string>usingstd::string;usingstd::cout;//按钮类classButton{public:Button(conststring&text);stringget_label()const;voidclick();private:stringla......
  • 实验3 类和对象_基础编程2
    任务一:button.hpp:#pragmaonce#include<iostream>#include<string>usingstd::string;usingstd::cout;//按钮类classButton{public:Button(conststring&text);stringget_label()const;voidclick();private:string......
  • 20222321 2024-2025-1 《网络与系统攻防技术》实验四实验报告
    一、实验内容1、恶意代码文件类型标识、脱壳与字符串提取对提供的rada恶意代码样本,进行文件类型识别,脱壳与字符串提取,以获得rada恶意代码的编写作者,具体操作如下:=(1)使用文件格式和类型识别工具,给出rada恶意代码样本的文件格式、运行平台和加壳工具;(2)使用超级巡警脱壳机等脱壳软......
  • c++程序设计基础实验三
    任务1:源代码:button.hpp:#pragmaonce#include<iostream>#include<string>usingstd::string;usingstd::cout;//按钮类classButton{public:Button(conststring&text);stringget_label()const;voidclick();priva......
  • 20222324石国力 《网络与系统攻防技术》 实验四
    1.实验内容一、恶意代码文件类型标识、脱壳与字符串提取对提供的rada恶意代码样本,进行文件类型识别,脱壳与字符串提取,以获得rada恶意代码的编写作者,具体操作如下:(1)使用文件格式和类型识别工具,给出rada恶意代码样本的文件格式、运行平台和加壳工具;(2)使用超级巡警脱壳机等脱壳软件,......
  • 20222324石国力 《网络与系统攻防技术》 实验三
    1.实验内容(1)正确使用msf编码器,使用msfvenom生成如jar之类的其他文件;(2)能够使用veil,加壳工具;(3)能够使用C+shellcode编程;(4)通过组合应用各种技术实现恶意代码免杀如果成功实现了免杀的,简单语言描述原理,不要截图。与杀软共生的结果验证要截图;(5)用另一电脑实测,在杀软开......
  • 实验3 类与对象
    实验任务1:botton.hpp代码:1#pragmaonce23#include<iostream>4#include<string>56usingstd::string;7usingstd::cout;89//按钮类10classButton{11public:12Button(conststring&text);13stringget_label()co......