首页 > 其他分享 >实验三

实验三

时间:2022-11-03 21:24:53浏览次数:40  
标签:return int long char 实验 func include

实验任务一

#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, November~";
    srand(time(0));
    for (i = 1; i <= 10; ++i) {
        line = rand() % 25;
        col = rand() % 80;
        print_text(line, col, text);
        Sleep(1000);
    }
    return 0;
}
void print_spaces(int n) {
    int i;
    for (i = 1; i <= n; ++i)
        printf(" ");
}
void print_blank_lines(int n) {
    int i;
    for (i = 1; i <= n; ++i)
        printf("\n");
}
void print_text(int line, int col, char text[])
{
    print_blank_lines(line - 1);
    print_spaces(col - 1);
    printf("%s", text);
}

实现"hi,November~"的动态滚动效果

实验任务二

2-1

#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));
    return 0;
}
long long fac(int n) 
{
    static long long p = 1;
    p = p * n;
    return p;
}

2-2

#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);
    return 0;
}
int func(int a, int b) {
    static int m = 0, i = 2;
    i += m + 1;
    m = i + a + b;
    return m;
}

局部static变量仅作用于定义的函数内,且变量值只在开始时初始化一次。

实验任务三

#include <stdio.h>
long long func(int n);
int main() {
    int n;
    long long f;
    while (scanf_s("%d", &n) != EOF) {
        f = func(n);
        printf("n = %d, f = %lld\n", n, f);
    }
    return 0;
}
long long func(int n)
{
    if (n == 1)
    {
        return 1;
    }
    else
    {
        return func(n - 1) * 2 + 1;
    }
}

实验任务四

#include <stdio.h>
int func(int n, int m);
int main() {
    int n, m;
    while (scanf_s("%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)
{
    if (n < m)
    {
        return 0;
    }
    if (m == 0)
    {
        return 1;
    }
    if (m >= 1)
    {
        return func(n - 1, m) + func(n - 1, m - 1);
    }
}

 实验任务五

#include <stdio.h>
int mul(int n, int m);
int main() 
{
    int n, m;
    while (scanf_s("%d%d", &n, &m) != EOF)
        printf("%d * %d = %d\n", n, m, mul(n, m));
    return 0;
}
int mul(int n, int m)
{
    if (n == 0 || m == 0)
    {
        return 0;
    }
    else
    {
        return mul(n - 1, m) + m;
    }
}

实验任务六

#include<stdio.h>
#include<stdlib.h>
void hanoi(unsigned int n, char ftom, char temp, char to);
void moveplate(unsigned int n, char from, char to);
int count;
int main()
{
    unsigned int n;
    while (scanf_s("%u", &n) != EOF)
    {
        hanoi(n, 'A', 'B', 'C');
        printf("一共移动了%d次", count);
        count = 0;
    }
    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);
    count++;
}

实验任务七

#include <stdio.h>
#include<math.h>
#include<stdlib.h>
int is_prime(int n);
    int main()
    {
        int a,b;
        int stop = 0;
        int i = 2;
        while (i < 20)
        {
            i += 2;
            for (int a = 2; a < i; a++)
            {
                b = i - a;
                if (is_prime(a)&&is_prime(b))
                {
                    printf("%d = %d+%d\n", i, a, b);
                    stop = 1;
                }
                if (stop) break;
            }
            stop = 0;
        }
        return 0;
    }
    int is_prime(int n)
    {
        if (n == 1) return 0;

        for (int k = 2; k < n; k++)
        {
            int stop = 0;
            if (n % k == 0)
            {
                return 0;
                stop = 1;
            }
            if (n == 2 || (n % k != 0 && k == n - 1)) return 1;
            if (stop) break;
        }
    }

 

 

 

实验任务八

#include <stdio.h>
#include<math.h>
long fun(long s);
int main() {
    long s, t;
    printf("Enter a number: ");
    while (scanf_s("%ld", &s) != EOF) {
        t = fun(s);
        printf("new number is: %ld\n\n", t);
        printf("Enter a number: ");
    }
    return 0;
}
long fun(long s)
{
    int n;
    int i=0;
    int j=0;
    while(s != 0)
    {
        n = s % 10;
        if (n % 2 ==1)
        {
            i = n * pow(10, j) + i;
            j++;
        }
        s /= 10;
    }
    return i;
}

 

标签:return,int,long,char,实验,func,include
From: https://www.cnblogs.com/toya7/p/16855608.html

相关文章

  • 实验3
    实验任务1#include<stdio.h>#include<stdlib.h>#include<time.h>#include<windows.h>#defineN80voidprint_text(intline,intcol,chartext[]);voidprint_s......
  • 实验二:逻辑回归算法实验
    |20大数据三班||学号201613334|  【实验目的】1.理解逻辑回归算法原理,掌握逻辑回归算法框架;2.理解逻辑回归的sigmoid函数;3.理解逻辑回归的损失函数;4.针对特定应......
  • 实验四
    实验任务五vectorInt.hpp#pragmaonce#include<iostream>#include<cassert>usingnamespacestd;classvectorInt{public:vectorInt(intn);vectorInt(......
  • 实验3
    task_11#include<stdio.h>2#include<stdlib.h>3#include<time.h>4#include<windows.h>5#defineN806voidprint_text(intline,intcol,charte......
  • 实验三
    #include<stdio.h>#include<stdlib.h>#include<time.h>#include<windows.h>#defineN80voidprint_text(intline,intcol,chartext[]);//函数声明void......
  • 实验6:开源控制器实践——RYU
    一、实验要求(一)基本要求1.搭建下图所示SDN拓扑,协议使用OpenFlow1.0,并连接Ryu控制器,通过Ryu的图形界面查看网络拓扑。查看网络拓扑2.阅读Ryu文档的TheFirstApplic......
  • 实验七:基于REST API的SDN北向应用实践
    一、实验目的1.能够编写程序调用OpenDaylightRESTAPI实现特定网络功能;2.能够编写程序调用RyuRESTAPI实现特定网络功能。二、实验环境1.下载虚拟机软件OracleVisua......
  • 使用Wireshark完成实验3-IP
    1、使用Wireshark打开ip-ethereal-trace-1,如图 电脑IP地址为192.168.1.1022、如图,IP包头中上层协议字段的值为1,代表为ICMP 3、如图,IP头中有20字节  IP数据......
  • 实验7:基于REST API的SDN北向应用实践
    实验目的能够编写程序调用OpenDaylightRESTAPI实现特定网络功能;能够编写程序调用RyuRESTAPI实现特定网络功能。实验要求(一)基本要求编写Python程序,调用OpenDayligh......
  • 实验3
    task1#include<stdio.h>#include<stdlib.h>#include<time.h>#include<windows.h>#defineN80voidprint_text(intline,intcol,chartext[]);//函数声明......