首页 > 其他分享 >实验3

实验3

时间:2023-03-30 20:58:05浏览次数:29  
标签:return int long 实验 func printf include

task 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);  // 暂停1000ms
    }
    
    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);      // 打印(line-1)行空行 
    print_spaces(col-1);            // 打印(col-1)列空格
    printf("%s", text);         // 在第line行、col列输出text中字符串
}

结论:每隔一秒在随机位置生成一句hi,April

tast 2

2.1

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

#include <stdio.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));

    return 0;
}

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

    return p;
}

 

 2.2

 

// 练习:局部static变量特性

#include <stdio.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);

    return 0;
}

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

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

    return m;
}

 

 

 结论:静态局部变量作用域在函数内,并可保存值到下一次调用

task 3

#include <stdio.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);
    }

    return 0;
}
 
long long func(int n)
{
    long long s;
    if(n==0)
    {
        s=0;
    }
    else
    {
        s=2*func(n-1)+1;
    }
    return s;
}

 

 task 4

 

#include <stdio.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));
    
    return 0;
}

int func(int n, int m)
{
    int s;
    if(n<m)
    {
        s=0;
        
    }
    else if(n==m or m==0)
    {
        s=1;
    }
    else if(m==1)
    {
        s=n;    
    }

 

 

 task 5

 

5.1

 

#include <stdio.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);
    }
    return 0;
} 

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

 

 

 

 

5.2

#include <stdio.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);
    }
    return 0;
} 

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

 

 task 6

 

 

#include<stdio.h>
int num=0;

void move(char a,int n,char c)
{
    num+=1;
    printf("%d:%c-->%c\n",n,a,c);
    
}
void hanoi(int n,char x,char y,char z)
{
    if(n==1)
        move(x,1,z);
    else{
        hanoi(n-1,x,z,y);
        move(x,n,z);
        hanoi(n-1,y,x,z);
    }
}

int main()
{
    int n;
    char a,b,c;
    while(scanf("%d", &n) != EOF) {
    num=0;
    hanoi(n,'A','B','C');
    printf("一共移动了%d次\n",num);}
    
    return 0;
}

 

 task 7

 

#include <stdio.h>
#include <math.h> 

int is_prime(int a)
{
    if (a == 1)
    {
        return 0;
    }
    int j = 0;
    for(j = 2; j <=sqrt(a); j++)
    {
        if (a % j == 0)
        {
            return 0;
        }
    }
    return 1;
}

int main()
{
    int n = 0;
    int count = 0;
    for (n = 4; n <= 20; n+=2)
    {
        for (int a = 2; a <= n/2 ; a++)
        {
            if (is_prime(a) && is_prime(n - a))
            {
                printf("%d=%d+%d\n", n, a, n - a);
                
                break; 
            }
        }
        
    }
    return 0;
}

 

 

 task 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("new number is: %ld\n\n", t);
        printf("Enter a number: ");
    }

    return 0;
}
long func(long s)
{
   int s1 = 1,  d;
long w = 0;
    while (s > 0)
    {
        d = s % 10;
        if (d % 2 != 0)
        {
            w= s1 * d + w;
            s1 *= 10;
        }
        s /= 10;
    }
    return w;
}

 

 

标签:return,int,long,实验,func,printf,include
From: https://www.cnblogs.com/zhaominghao1114/p/17274241.html

相关文章

  • 实验3
    实验任务一:#include<time.h>#include<stdio.h>#include<stdlib.h>#include<windows.h>#defineN80voidprint_text(intline,intcol,chartext[]);voidprint_spaces(intn);voidprint_blank_lines(intn);intmain(){intline,co......
  • 230330实验三
    实验1 1#include<stdio.h>2#include<stdlib.h>3#include<time.h>4#include<windows.h>5#defineN806voidprint_text(intline,intcol,chartext[]);//函数声明7voidprint_spaces(intn);//函数声明8voidprint_blank_l......
  • Exp3-免杀原理 实验报告—20201229赵斌
    免杀原理与实践基础问题回答Q1:杀软是如何检测出恶意代码的?(1)基于特征码的检测特征码是一段或多段数据,如果一个可执行文件(或其他运行的库、脚本等)包含这样的数据则被认为是恶意代码。AV软件厂商要做的就是尽量搜集最全的、最新的特征码库。所以杀毒软件的更新很重要。过时的特......
  • 实验三
    实验三实验任务1实验代码#include<stdio.h>#include<stdlib.h>#include<time.h>#include<windows.h>#defineN80voidprint_text(intline,intcol,chartext[]);voidprint_spaces(intn);voidprint_blank_lines(intn);intmain(){in......
  • 博客首发Cisco实验
    第一步(划分VLAN):  主机方:     1.根据划分好的子网表格填写主机IP、子网掩码、默认网关。  2.添加给每个部门划分的VLAN,给VLAN配置IP、子网掩码:    interfacevlan70      ipaddress192.168.2.226255.255.255.240      n......
  • Python计算机视觉基础实验3-显著性检测(HC&FC)
    一、实验基础图像显著性检测图像的显著性是指对于给定一副真实世界中的场景图像,人们会自动地识别出感兴趣区域,忽略掉不感兴趣的区域,即将注意力集中在图像中某些显著的部分区域。图像的注意预测,也称视觉显著性检测,指通过智能算法模拟人的视觉系统特点,预测人类的视觉凝视点(就是全神贯......
  • 202031607232-张玉国 实验一 软件工程准备 - 软件工程
    项目与内容项目内容班级博客链接班级博客本次作业要求链接作业要求我的课程学习目标学会在程序设计前进行合理的需求分析、可行性研究本次作业在哪些方面帮我实现学习目标带我了解软件工程任务任务一已完成问卷调查的填写。任务二已在博客园平......
  • 易基因: m6A RNA甲基化研究的前期探索性实验思路|干货系列
    大家好,这里是专注表观组学十余年,领跑多组学科研服务的易基因。近年来,m6ARNA甲基化作为国家自然科学基金表观遗传学研究的热门领域,相关研究成果层出不穷,高分文章不断......
  • 网络对抗实验三 免杀原理与实践
    目录《网络对抗技术》——Exp3免杀原理与实践1.1实践目标1.2基础知识任务一:正确使用免杀工具或技巧1.正确使用msf编码器2.msfvenom生成如jar之类的其他文件3.使用veil-e......
  • Python自然语言处理基础实验2_基于HMM的中文分词
    实验目的了解并掌握基于隐马尔可夫模型(HMM)的分词方法,重点掌握Viterbi算法。实验要求1、对给定的语料库(或自行准备)进行统计分析,确定HMM模型的三个参数;2、根据上一步求得的......