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

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

时间:2024-04-29 13:12:44浏览次数:24  
标签:函数 int 编程 long C语言 char func printf include

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;
    system("pause");
}

// 打印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~"

2.

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

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

	p = p * n;

	return p;
}

 2.1.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;
    printf("p=%lld\n",p);
    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);
system("pause");
    return 0;
    
}

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

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

    return m;
}

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 f;
    if (n == 0)
    {
        f = 0;
    }
    if (n >= 1 && n <= 32)
    {
        f = 2 * func(n - 1) + 1;
    }
    return f;
}

 

4

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

 

4.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)
{
    int s;
    
    if(n<m) 
       s=0;
    else if(m==n||m==0)
       s=1;
    else if(m==1)
        s=n;    
      else 
        s=func(n-1,m)+func(n-1,m-1);
    return s;
}

 

 

5

# include <stdio.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    i;
    while((scanf("%u",&n)!=EOF))
    {
        hanoi(n,'A','B','C');
        i=pow(2.0,n*1.0)-1;
        printf("一共移动了%d次\n",i);
    }
    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);

}

 

 

6

#include <stdio.h>
#include<stdlib.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: ");
    }
    system("pause");
    return 0;
}
long func(long s){
long n,m=0,i=1;
while(s!=0){
    n=s%10;
    if(n%2!=0){
    m=m+n*i;
    i=i*10;
    }
    s=s/10;}
    return m;
}

 

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

相关文章

  • 【C语言】---- return的作用
    return是C语言中的一个关键字,用于从函数中返回值。它有以下几个作用:1返回值return用于将函数的结果返回给调用者。在函数执行过程中,当遇到return语句时,函数将立即停止执行,并将其后的表达式的值作为函数的返回值返回给调用者。例如:```cintadd(inta,intb){return......
  • 构造函数的成员初始化列表
    为什么要初始化成员对于类成员是基础数据类型,例如int、char这些,构造对象时,成员不会被初始化,值是随机的。下面代码可以验证下:classA{public:A(){}voidshowMember()const{std::cout<<"a:"<<a<<std::endl;}private:inta;};int......
  • C语言常量
    多种方式定义常量 常量没有数据类型。#include<stdio.h>#defineZERO0#definePI3.1415intmain(){//1.字面常量3.14;//字面常量1000;//字面常量//2.#defineprintf("zero=%d\n",ZERO);//ZERO=1;//不可以重新赋值/......
  • 【C语言】---- 数组
    在计算机编程中,数组是一种非常重要的数据结构,它可以用来存储多个相同类型的数据。在本文中,我们将深入探讨一维数组和二维数组,它们的定义、特性以及在编程中的应用。一维数组一维数组是最简单的数组形式之一,它是一组按顺序排列的元素的集合,每个元素都有一个唯一的索引。在C语言中......
  • 数论习题(2) Legendre公式+高斯函数
    本人独自证明,可能存在一定疏漏.题目:\[m!n!(m+n)!\mid(2m)!(2n)!.\]证明:对于每个素数\(p\),考察式子两边的\(p\)进赋值,即证\[v_p((2m)!(2n)!)\geqv_p(m!n!(m+n)!).\]根据\(p\)进赋值的基本性质与Legendre公式,有\[\begin{align*}v_p((2m)!(2n)!)&=v_p((2m)!)......
  • 实验3 C语言函数应用编程
    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);//函数声明......
  • 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语言实现了一个程序,能够将数字谱转变成简谱网站能够识别的格式,依靠简谱网站将简谱绘制出来简谱网站,不需要安装任何应用,支持免......