首页 > 其他分享 >实验3

实验3

时间:2022-11-03 19:33:38浏览次数:42  
标签:return int long 实验 func printf 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); // 暂停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中字符串
}

随机在界面中生成若干提供的语句

任务二

//利用局部static变量的特性,计算阶乘
#include <stdio.h>
long long fac(int n); // 函数声明
int main() {
    int i, n;
    printf("Enter n: ");
    scanf_s("%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;
}

// 练习:局部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;
}

其特性,变量值会继承变化

任务三

#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 2 * func(n - 1) + 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 1;
    else if (m == 1)
        return n;
    else if (m == 0)
        return 1;
    else if (n < m)
        return 0;
    else
        return func(n - 1, m) + func(n - 1, m - 1);


}

 实验五

#include <stdio.h>
#include<stdlib.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 if (n == 1)
        return m;
    else
        return mul(n - 1, m) + m;
}

 实验六

#include<stdio.h>
int a = 0;
void hanoi(int i, char one, char two, char three); int main() {int n; printf("请输入盘子数:"); while(scanf_s("%d", &n)!=EOF) { hanoi(n, 'A', 'B', 'C'); printf("共需要%d步\n", a); printf("请输入盘子数:"); } return 0; } void hanoi(int i, char one, char two, char three) { void move(int x, int y); if (i == 1) { move(one, three); } else { hanoi(i - 1, one, three, two); move(one, three); hanoi(i - 1, two, one, three); } } void move(int x, int y) { a++; printf("%c-->%c\n", x, y); }

实验七

#include<stdio.h>
#include<stdlib.h>
int isprime(int n);
int main() {
    int i, n;
    for (i = 2; i <= 20; i = i + 2)
    {
        for (n = 2; n <=i/2; n++)
        {
            if (isprime(n) && isprime(i - n))
            {
                printf("%d=%d+%d\n", i, n, i - n);
                break;
            }
            }
    }
    return 0;
}
int isprime(int n) {
    int i = 2;
    if (n < 2)
        return 0;
    for (i; i <=n/2; i++) 
    {
        if (n % i == 0)
            return 0;
    }
}

实验八

#include<stdio.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=1,m,t=0;
while(s>0)
{
    m=s%10;
    if(m%2!=0)
    {
        t=t+n*m;
        n=n*10;
    }
    s=s/10;
}
return t;
}

 

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

相关文章

  • 实验四
    实验任务五    vectorInt.hpp#pragmaonce#include<bits/stdc++.h>usingnamespacestd;classvectorInt{public:vectorInt(intn);vectorIn......
  • 实验四 类与数组,指针
    一、实验结论:1.实验任务5:vectorint.hpp:#include<iostream>#include<iomanip>usingnamespacestd;classvectorint{public:vectorint(intn):size{n}......
  • 畜牧虚拟仿真3D交互展示应用为学生提供高逼真、安全的场景模拟实验环境-深圳华锐视点
    大力发展高等职业教育是我国实现经济快速可持续发展的必然选择,在强国发展占有举足轻重的作用。华锐视点立足于先进成熟的5G、VRAR、物联网、三维建模和AI等技术,以解决......
  • 实验四
    实验任务五:vectorInt.hpp:1#include<iostream>2#include<cassert>3usingnamespacestd;4classvectorInt{5public:6vectorInt(intn);7......
  • 实验四
    实验4.5#pragmaonce#include<iostream>usingnamespacestd;classvectorInt{friendvoidoutput(vectorInt&v);public:vectorInt(intn);vectorIn......
  • Python第十章实验报告
    一、实验题目Python第十章实例和实战作业二、实验目的和要求1.熟悉Pycharm的运行环境2.学习并掌握Python文件及目录操作三、主要仪器设备联想小新air15硬件:AMDR75......
  • 实验四
    vectorint.hpp#pragmaonce#include<iostream>usingstd::cout;usingstd::endl;classvectorint{private:intsize;int*p;public:vectorint(int......
  • 实验7:基于REST API的SDN北向应用实践
    实验7:基于RESTAPI的SDN北向应用实践一、实验目的能够编写程序调用OpenDaylightRESTAPI实现特定网络功能;能够编写程序调用RyuRESTAPI实现特定网络功能。二、实验......
  • 实现实验室和寝室两台电脑文件实时同步
    考虑到白天去实验室工作,晚上又要回寝室,文件传输会很麻烦,于是寻求能够方便进行文件远程同步的方案。1.使用工具内网穿透:zerotier(全平台均可)文件同步(备份)工具:FreeFileSync(Win......
  • 实验3
     task1#include<stdio.h>#include<stdlib.h>#include<time.h>#include<Windows.h>#defineN80voidprint_text(intline,intcol,chartext[]);voidprint_sp......