首页 > 编程语言 >实验3 C语言函数应用编程

实验3 C语言函数应用编程

时间:2024-04-28 20:45:47浏览次数:28  
标签:return 函数 int 编程 long C语言 char func include

task1

#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中字符串
}

实现的功能:每隔1s在第line行第col列打印文本“hi,April~”,重复十次。line和col通过随机数生成。

task2.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));
	system("pause");
    return 0;
}

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

    p = p * n;

    return p;
}

#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;
}	

task2.2

#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;
}

一致。

 局部static变量在程序运行的整个周期中只会被分配一次地址内存,其值不变,不受函数调用次数的影响。

task3

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

task4

迭代

#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)
{
    int i,a=1,b=1;
    if(m>n)
    {
        return 0;
    }
    else if(m==0&&n==0)
    {
        return 1;
    }
    else
    {
        for(i=1;i<=m;i++)
        {
            a*=n-i+1;
            b*=i;
        }
        return a/b;
    }
}

递归

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

task5

#include <stdio.h>
#include<stdlib.h>

void hanoi(unsigned int n,char from,char temp,char to,int *m);
void moveplate(unsigned int n,char from,char to,int *m);
int main()
{
    unsigned int n;
    while(scanf("%u",&n)!=EOF)
    {
        int m=0;
        hanoi(n,'A','B','C',&m);
        printf("\n一共移动了%d次.\n\n",m);
    }
    system("pause");
    return 0;
}

void hanoi(unsigned int n,char from,char temp,char to,int *m)
{
    if(n==1)
    {
        moveplate(n,from,to,m);
    }
    else
    {
        hanoi(n-1,from,to,temp,m);
        moveplate(n,from,to,m);
        hanoi(n-1,temp,from,to,m);
    }
}
void moveplate(unsigned int n,char from,char to,int *m)
{
    printf("%u:%c --> %c\n",n,from,to);
    (*m)++;
}

 

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){
        getchar();
        t=func(s);
        printf("new number is: %ld\n\n",t);
        printf("Enter a number:");
    }
    return 0;
}
  long func(long s){
    long ans;
    long digit,t;
     
    ans=0;
    t=1;
     
    while(s!=0){
        digit=s%10;
        if(digit%2){
            ans+=t*digit;
              t*=10;
          }
        s=s/10;
      }
    return ans;
  }

标签:return,函数,int,编程,long,C语言,char,func,include
From: https://www.cnblogs.com/Potyomkin/p/18157355

相关文章

  • vue之箭头函数
    箭头函数定义箭头函数(将原函数的“function”关键字和函数名都删掉,并使用“=>”连接参数列表和函数体。):constddd=()=>{}:()参数;{}方法体,可以直接是返回的表达式1、箭头函数的使用定义函数的三种方式:<script>//箭头函数:也是一种定义函数的方式//1.定义函数的方式:functioncon......
  • UES-03-函数
    带参数默认值的函数函数的参数数量不受声明时指定的参数个数影响,可以有任意多个。函数声明时使用参数默认值直接在形参后面添加'=defaultValue'即可。可以给任意位置的参数添加默认值,只有当没有给这个位置的参数传值或者传的值为undefined时该参数使用默认值。在使用参数......
  • Python多线程编程深度探索:从入门到实战
    title:Python多线程编程深度探索:从入门到实战date:2024/4/2818:57:17updated:2024/4/2818:57:17categories:后端开发tags:多线程并发编程线程安全Python异步IO性能优化实战项目第1章:Python基础知识与多线程概念Python简介:Python是一种高级、通用、解释......
  • C语言,实现数字谱到简谱的转换
    C语言,实现数字谱到简谱的转换前言:本文初编辑于2024年4月28日CSDN:https://blog.csdn.net/rvdgdsva博客园:https://www.cnblogs.com/hassle前言使用C语言实现了一个程序,能够将数字谱转变成简谱网站能够识别的格式,依靠简谱网站将简谱绘制出来简谱网站,不需要安装任何应用,支持免......
  • 为啥在编程的世界里,日期时间处理这么难?
    做过开发的同学都有体会,日期时间的处理很麻烦,稍不注意就会出现日期格式不一样,或者时间差8小时。那为何日期时间这么难处理呢?今天我们就来梳理一下在编程的世界里,为啥日期时间这么难处理。我们先来熟悉几个概念1、时区(Timezone)由于各地的日出日落时间不同,所以把全球所有地区共......
  • MySQL函数详解
     CONCAT()用途:连接两个或多个字符串。示例:sql`SELECTCONCAT('Hello','','World')ASGreeting;` 这将返回 'HelloWorld'。LOWER()和UPPER()用途:将字符串转换为小写或大写。示例:sql`SELECTLOWER('HELLO')ASLowercase,UPPER(&#......
  • Windows编程系列:如何为任务栏设置背景
    最近在使用upupoo时,发现里面有个任务栏设置的功能,效果还不错 我试了前面为资源管理器设置背景的方法,发现不生效。大意的反编译了一下upupoo的各种dll,但是也没找到具体的实现方法(因为目前对逆向还不是很熟) 在搜索引擎搜索时,找到了OpenShell这个软件,发现里面也实现了这个功......
  • 最近常用的几个【行操作】的Pandas函数
    最近在做交易数据的统计分析时,多次用到数据行之间的一些操作,对于其中的细节,简单做了个笔记。1.shfit函数shift函数在策略回测代码中经常出现,计算交易信号,持仓信号以及资金曲线时都有涉及。这个函数的主要作用是将某列的值上下移动。默认情况下,shift函数是向下移动一行,移动后,新......
  • openGauss 时间-日期函数和操作符
    时间/日期函数和操作符时间日期操作符警告:用户在使用时间和日期操作符时,对应的操作数请使用明确的类型前缀修饰,以确保数据库在解析操作数的时候能够与用户预期一致,不会产生用户非预期的结果。比如下面示例没有明确数据类型就会出现异常错误。SELECTdate'2001-10-01'-'7......
  • C#的基于.net framework的Dll模块编程(四) - 编程手把手系列文章
          这次继续这个系列的介绍: 一、命名空间的起名;对于C#来说,一般命名空间的建议是:公司名(或个人名称).产品名.分类名,比如我这边是用的这个:Lzhdim.LPF.Helper,意思是个人名Lzhdim,加上LPF为平台名,加上Helper分类为帮助类,其它的更长的请读者自己添加。  ......