首页 > 其他分享 >实验3

实验3

时间:2024-04-27 15:22:35浏览次数:16  
标签:return int long char 实验 func include

task1

点击查看代码
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <unistd.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(1);  // 暂停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中字符串
}

task2
1.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;

    p = p * n;

    return p;
}

1.2

点击查看代码
// 利用局部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

点击查看代码
// 练习:局部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;
}

task3

点击查看代码
#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 f;
	if(n==0)
		f=0;
	else
		f=2*func(n-1)+1; 
	
	return f;
}

task4
1.迭代

点击查看代码
#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 i;
    double up=n,down=m,s;
    if(m==0)
        s=1;
    
    else {
        for(i=1;i<=m-1;i++)
    {
        up=up*(up-i);
        down=down*(down-i);
    }
    s=up/down;
    }
    return s;
}

2.递归

点击查看代码
#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)
{
	if(m>n)
		return 0;
	
	else if(m==n||m==0)
		return 1;
	
	else{
		int s;
		s=func(n-1,m)+func(n-1,m-1);
		return s;
    }
}

task5

点击查看代码
#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 s;
    
    while(scanf("%d",&n)!=EOF)
    {
    hanoi(n,'A','B','C');
    s=pow(2,n)-1;
    printf("一共移动了%d次\n",s); 
}
    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("%d:%c-->%c\n",n,from,to);
 }

task6

点击查看代码
#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) {
    long ans;
    long m, t;

    ans = 0;
    t = 1;

    while (s != 0) {
        m = s % 10;

        if (m % 2) {
            ans += t * m;
            t *= 10;
        }

        s /= 10;
    }
        return ans;
}

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

相关文章

  • 实验16-使用GAN生成手写数字样本
    版本python3.7tensorflow版本为tensorflow-gpu版本2.6运行结果: 代码:from__future__importprint_function,divisionfromkeras.datasetsimportmnistfromkeras.layersimportInput,Dense,Reshape,Flatten,Dropoutfromkeras.layersimportBatchNormalizatio......
  • 实验14-1使用cnn完成MNIST手写体识别(tf)+实验14-2使用cnn完成MNIST手写体识别(keras)
    版本python3.7tensorflow版本为tensorflow-gpu版本2.6实验14-1使用cnn完成MNIST手写体识别(tf)运行结果: 代码:importtensorflowastf#Tensorflow提供了一个类来处理MNIST数据fromtensorflow.examples.tutorials.mnistimportinput_dataimporttime#载入数据集mn......
  • 实验10-使用keras完成线性回归
    版本python3.7tensorflow版本为tensorflow-gpu版本2.6运行结果: 代码:importnumpyasnpnp.random.seed(1337)fromkeras.modelsimportSequentialfromkeras.layersimportDensefromsklearn.metricsimportr2_scoreimportmatplotlib.pyplotasplt#创建数据......
  • 实验11-使用keras完成逻辑回归
    版本python3.7tensorflow版本为tensorflow-gpu版本2.6运行结果:  代码:importnumpyasnpfromkeras.modelsimportSequentialfromkeras.layersimportDense,Dropout,Activation,Flattenimportmatplotlib.pyplotaspltfromsklearnimportdatasets#样本......
  • 实验12-使用keras预训练模型完成猫狗识别
    版本python3.7tensorflow版本为tensorflow-gpu版本2.6运行结果:这里我用Gpu进行加速,训练一回9秒,如果不启用gpu,训练一回会很慢。  代码:#-*-codeing=utf-8-*-#@Time:2022/10/211:44#@Author:程浩#@File:猫狗识别.py#@Software:PyCharmimporttensorflow......
  • 实验8-1tensorboard可视化+实验8-2tensorboard案例
    版本python3.7tensorflow版本为tensorflow-gpu版本2.6实验8-1tensorboard可视化运行结果:代码:importtensorflowastf#创建默认图graph=tf.compat.v1.get_default_graph()#定义命名空间withgraph.as_default():withtf.name_scope('input'):#fetc......
  • 实验三
    实验任务11#include<stdio.h>2#include<stdlib.h>3#include<time.h>4#include<windows.h>5#defineN8067voidprint_text(intline,intcol,chartext[]);//函数声明8voidprint_spaces(intn);//函数声明9voidprint......
  • 实验一 二手平台原型设计
    墨刀、Axure、Mockplus等原型设计工具优缺点分析:一、墨刀优点:在轻量级的移动端原型制作更加迅速,展示更加方便。缺点:价格较贵,不能画流程图,相对于其他两款功能还不是很全面;应用局限性,专注于app原型设计,在后台和网页稍有乏力;归档能力不足,更倾向于链接、二维码形式输出,不能以文档输......
  • 实验三
    TASK1点击查看代码#include<stdio.h>#include<stdlib.h>#include<time.h>#include<windows.h>#defineN80voidprint_text(intline,intcol,chartext[]);//函数声明voidprint_spaces(intn);//函数声明voidprint_blank_lines(intn);//......
  • 实验一———美团APP
    墨刀、Axure、Mockplus等原型设计工具优缺点分析:一、墨刀优点:在轻量级的移动端原型制作更加迅速,展示更加方便。缺点:价格较贵,不能画流程图,相对于其他两款功能还不是很全面;应用局限性,专注于app原型设计,在后台和网页稍有乏力;归档能力不足,更倾向于链接、二维码形式输出,不能以文档输......