实验三

Posted djwzxy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实验三相关的知识,希望对你有一定的参考价值。

实验三

实验任务1

程序源码

#include<stdio.h>
#include<stdlib.h>
#include<time.h>
#include<windows.h>
#define N 80

void print_text(int line, int col, char text[]);
void print_spaces(int n);
void print_blank_lines(int n);

int main()
    int line, col, i;
    char text[N] = "hi, April";

    srand(time(0));

    for(i = 1; i <= 10; ++i)
        line = rand() % 25;
        col = rand() % 80;
        print_text(line, col, text);
        Sleep(1000);
    

    system("pause");
    return 0;



//打印n个空格
void print_spaces(int n)
    int i;

    for(i = 1; i <= n; ++i)
        printf(" ");


//打印n行空白行
void print_blank_lines(int n)
    int i;

    for(i = 1; i <= n; ++i)
        printf("\\n");


//在第line行第col列打印一段文本
void print_text(int line, int col, char text[])
    print_blank_lines(line-1);
    print_spaces(col-1);
    printf("%s", text);

 

程序运行截图

                     

                     

 

讨论:在0~24行,0~79列中随机选一行一列,在第line行打印(line-1)行空行,第col列打印(col-1)列空格,在第line行第col列输出“hi, April”,重复运行10次,每次间隔1000ms

实验任务2

程序源码

//利用局部static变量的特性,计算阶乘

#include<stdio.h>
#include<stdlib.h>
long long fac(int n);

int main()
    int i, n;

    printf("Enter n:");
    scanf("%d", &n);

    for(i = 1; i <= n; ++i)
        printf("%d!= %lld\\n", i, fac(i));

    system("pause");
    return 0;


//函数定义
long long fac(int n)
    static long long p = 1;

    p = p * n;

    return p;

 

程序运行截图

程序源码

//利用局部static变量的特性,计算阶乘

#include<stdio.h>
#include<stdlib.h>
long long fac(int n);

int main()
    int i, n;

    printf("Enter n:");
    scanf("%d", &n);

    for(i = 1; i <= n; ++i)
        printf("%d!= %lld\\n", i, fac(i));

    system("pause");
    return 0;


//函数定义
long long fac(int n)
    static long long p = 1;
    printf("p = %lld\\n", p);

    p = p * n;

    return p;

 

程序运行截图

实验源码

//练习局部static变量特性

#include<stdio.h>
#include<stdlib.h>
int func(int, int);

int main()
    int k = 4, m = 1, p1, p2;

    p1 = func(k, m);
    p2 = func(k, m);
    printf("%d, %d\\n", p1, p2);

    system("pause");
    return 0;


//函数定义
int func(int a, int b)
    static int m = 0, i = 2;

    i += m + 1;
    m = i + a + b;

    return m;

 

实验运行截图

 

讨论:

实验任务3

程序源码

#include<stdio.h>
#include<stdlib.h>
long long func(int n);

int main()
    int n;
    long long f;

    while (scanf("%d", &n) != EOF)
        f = func(n);
        printf("n = %d, f = %lld\\n", n, f);
    

    system("pause");
    return 0;



long long func(int n)
    if(n == 1)
        return 1;
    
    return 2 * func(n - 1) + 1;

 

程序运行截图

 

讨论:

实验任务4

程序源码

#include<stdio.h>
#include<stdlib.h>
int func(int n, int m);

int main()
    int n, m;

    while(scanf("%d%d", &n, &m) != EOF)
        printf("n = %d, m = %d, ans = %d\\n", n, m, func(n, m));

    system("pause");
    return 0;



int func(int n, int m)
    if(n < m || n == 0)
        return 0;
    
    else if(m == 0 || n == m)
        return 1;
    
    return func(n - 1, m) + func(n - 1, m - 1);

 

程序运行截图

 

讨论:

实验任务5

程序源码

#include<stdio.h>
#include<stdlib.h>
#include<math.h>
double mypow(int x, int y);

int main()
    int x, y;
    double ans;

    while(scanf("%d%d", &x, &y) != EOF)
        ans = mypow(x, y);
        printf("%d的%d次方:%g\\n\\n", x, y, ans);
    

    system("pause");
    return 0;



double mypow(int x, int y)
    if(y == 0)
        return 1;
    
    else if(y > 0)
        return mypow(x, y - 1) * x;
    
    else if(y < 0)
        return (double)mypow(x, y + 1) / (double)x;
    

 

程序运行截图

程序源码

#include<stdio.h>
#include<stdlib.h>
#include<math.h>
double mypow(int x, int y);

int main()
    int x, y;
    double ans;

    while(scanf("%d%d", &x, &y) != EOF)
        ans = mypow(x, y);
        printf("%d的%d次方:%g\\n\\n", x, y, ans);
    

    system("pause");
    return 0;



double mypow(int x, int y)
    int i,j;
    double ans=1;
    if(y>=0)
        for(i=1;i<=y;i++)
            ans=ans*x;
    else
        for(j=1;j<=(-y);j++)
            ans=ans*x;
        ans=1.0/ans;
    
    return ans;

 

程序运行截图

 

讨论:

实验任务6

程序源码

#include<stdio.h>
#include<stdlib.h>
#include<math.h>
void hanoi(unsigned int n,char from,char temp,char to);
void moveplate(unsigned int n,char from,char to);

int main()
    unsigned int n;
    int a=0;
    while(scanf("%u",&n)!=EOF)
        hanoi(n,\'A\',\'B\',\'C\');
        printf("\\n");
        a=pow(2,n)-1;
        printf("一共移动了%d次\\n\\n",a);
    
    return 0;


void hanoi(unsigned int n,char from,char temp,char to)
    if(n==1)
        moveplate(n,from,to);
    else
        hanoi(n-1,from,to,temp);
        moveplate(n,from,to);
        hanoi(n-1,temp,from,to);
    


void moveplate(unsigned int n,char from,char to)
    printf("%u:%c-->%c\\n",n,from,to);

 

程序运行截图

 

讨论:

实验任务7

程序源码

#include<stdio.h>
#include<math.h>
#include<stdlib.h>
int is_prime(int n);

int main()
    int j,k;
    while(scanf("%d",&j)!=EOF)
        for(k=1;k<=j;k++)
            if(is_prime(k)&&is_prime(j-k))break;
        printf("%d=%d+%d\\n",j,k,j-k);
    
    return 0;


int is_prime(int n)
    int i;
    double m;
    m=sqrt(n);
    for(i=2;i<=m;i++)
        if(n%i==0)break;
    if(n!=1&&i>m)
        return 1;
    else
        return 0;

 

程序运行截图

 

讨论:

实验任务8

程序源码

#include<stdio.h>
#include<math.h>
long func(long s);

int main()
    
    long s,t;
    printf("Enter a number:");
    while(scanf("%ld",&s)!=EOF)
        t=func(s);
        printf("nem number is: %ld\\n\\n",t);
        printf("Enter a number:");
    
    
    return 0;
 

long func(long s)
    long b=0,t=0;
    int a,m;
    while(s!=0)
        a=s%10;
        if(a%2!=0)
            b=10*b+a;
        s=s/10;
    
    
    while(b!=0)
        m=b%10;
        t=10*t+m;
        b=b/10;
    
    
    return t;

 

程序运行截图

 

讨论:

2018-2019-2 20175223 实验三《敏捷开发与XP实践》实验报告

北京电子科技学院(BESTI)实验报告

课程:Java2实用教程 班级:201752 姓名:姚明宇 学号:20175223
成绩: 指导教师:娄嘉鹏 实验日期:5月3日
实验密级: 预习程度: 实验时间:
仪器组次: 必修/选修:选修 实验序号:

目录

实验名称:实验三 敏捷开发与XP实践

实验仪器:

名称 型号 数量
PC端 1

实验内容、步骤与体会:


一、实验三 敏捷开发与XP实践-1

实验三 敏捷开发与XP实践 http://www.cnblogs.com/rocedu/p/4795776.html, Eclipse的内容替换成IDEA。参考 http://www.cnblogs.com/rocedu/p/6371315.html#SECCODESTANDARD 安装alibaba 插件,解决代码中的规范问题。
在IDEA中使用工具(Code->Reformate Code)把下面代码重新格式化,再研究一下Code菜单,找出一项让自己感觉最好用的功能。提交截图,加上自己学号水印。

public class CodeStandard {
public static void main(String [] args){
StringBuffer buffer = new StringBuffer();
buffer.append('S');
buffer.append("tringBuffer");
System.out.println(buffer.charAt(1));
System.out.println(buffer.capacity());
System.out.println(buffer.indexOf("tring"));
System.out.println("buffer = " + buffer.toString());
if(buffer.capacity()<20)
buffer.append("1234567");
for(int i=0; i<buffer.length();i++)
System.out.println(buffer.charAt(i));
}
}
  • 解决代码中的规范问题
    技术图片
  • 功能:方便的功能:Generate的setter、getter、覆写toString等功能
    技术图片

二、实验三 敏捷开发与XP实践-2

在码云上把自己的学习搭档加入自己的项目中,确认搭档的项目加入自己后,下载搭档实验二的Complex代码,加入不少于三个JUnit单元测试用例,测试成功后git add .; git commit -m "自己学号 添加内容";git push;
提交搭档项目git log的截图,包含上面git commit的信息,并加上自己的学号水印信息。

技术图片
技术图片


三、实验三 敏捷开发与XP实践-3

实验三 敏捷开发与XP实践 http://www.cnblogs.com/rocedu/p/4795776.html, Eclipse的内容替换成IDEA。
完成重构内容的练习,下载搭档的代码,至少进行三项重构,提交重构后代码的截图,加上自己的学号水印。提交搭档的码云项目链接。

技术图片


四、实验三 敏捷开发与XP实践-4

参考 http://www.cnblogs.com/rocedu/p/6683948.html,以结对的方式完成Java密码学相关内容的学习,结合重构,git,代码标准
提交学习成果码云链接和代表性成果截图,要有学号水印。

  • 凯撒密码:
    技术图片

五、代码链接

码云仓库:Java实验3 https://gitee.com/yanbbb/java_experiment_3.git

码云网页链接:Complex175223


PSP

步骤 耗时 百分比
需求分析 10min 10%
设计 15min 15%
代码实现 35min 35%
测试 30min 30%
分析总结 10min 10%

以上是关于实验三的主要内容,如果未能解决你的问题,请参考以下文章

区块链技术与应用实验报告(实验三)

区块链技术与应用实验报告(实验三)

区块链技术与应用实验报告(实验三)

区块链技术与应用实验报告(实验三)

实验三报告

实验三