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

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

时间:2024-04-27 21:11:48浏览次数:16  
标签:return 函数 int 编程 long C语言 char func include

 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 #include <time.h>
 4 #include <windows.h>
 5 #define N 80
 6 
 7 void print_text(int line, int col, char text[]);  // 函数声明 
 8 void print_spaces(int n);  // 函数声明 
 9 void print_blank_lines(int n); // 函数声明 
10 
11 int main() {
12     int line, col, i;
13     char text[N] = "hi, April~";
14     
15     srand(time(0)); // 以当前系统时间作为随机种子
16     
17     for(i = 1; i <= 10; ++i) {
18         line = rand() % 25;
19         col =  rand() % 80;
20         print_text(line, col, text);
21         Sleep(1000);  // 暂停1000ms
22     }
23     
24     return 0; 
25 }
26 
27 // 打印n个空格 
28 void print_spaces(int n) {
29     int i;
30     
31     for(i = 1; i <= n; ++i)
32         printf(" ");
33 }
34 
35 // 打印n行空白行
36 void print_blank_lines(int n) {
37     int i;
38     
39     for(i = 1; i <= n; ++i)
40         printf("\n");
41  } 
42 
43 // 在第line行第col列打印一段文本 
44 void print_text(int line, int col, char text[]) {
45     print_blank_lines(line-1);      // 打印(line-1)行空行 
46     print_spaces(col-1);            // 打印(col-1)列空格
47     printf("%s", text);         // 在第line行、col列输出text中字符串
48 }

程序功能:每间隔1秒随机打印一个“hi,April~” ,并且打印的行和列由函数控制,实现动态输出10个“hi,April~”

task2_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;
    
    p = p * n;

    return p;
}

task2_1.2

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

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

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

递归方式

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

task6

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

task5

#include <stdio.h>
#include <math.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,from,temp,to,m);
    }
}
void moveplate(unsigned int n,char from,char to,int *m)
{
    printf("%u:%c-->%c\n",n,from,to);
    (*m)++;
}

 

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

相关文章

  • python 如何动态加载lib中的函数
    classTestInstance:def__init__(self):#初始化库字典,存放找到的库self.lib=Proxy()#使用一个代理对象来模拟层级结构classProxy:def__init__(self):self._libObjectDictCache={}def_getLibInstance(self,l......
  • 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);//函数声......
  • 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(i......
  • 【C语言】---- scanf函数和printf函数
    1函数简介printf()函数和scanf()函数能让用户可以与程序交流,它们是输入/输出函数,或简称为I/O函数。虽然printf()是输出函数,scanf()是输入函数,但是它们的工作原理几乎相同。两个函数都使用格式字符串和参数列表。2scanf()函数C库包含了多个输入函数,scanf()是最通用的一个,因为......
  • 函数
    函数在调用的时候,实参需要和形参的类型一致或者能够转换。函数的形参的类型是必须的,但是名字是可选的(函数的原型并补包括参数的名字),用不到就可以不命名。C++当中,名字有作用域,对象有生命周期。内层如果定义了和外层一样的名字,此时外层的名字会被隐藏。对于局部变量,作用域开始的时......
  • 一道编程题引发的C中关于数组、指针的思考
    7-163谷歌的招聘由一道编程题引发的C中关于数组、指针的思考先来看三种数组定义方式#include<stdio.h>#include<stdlib.h>intmain(){//方式1intarray_1[4]={1};//方式2,变长数组intn2;scanf("%d",&n2);intarray_2[n2];//使用变......
  • 实验3 C语言函数应用编程
    1.实验任务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_blank_lines(intn);//函......
  • Python (GUI编程)模块 使用方法
    GraphicalUserInterface,简称GUI,中文名为图形用户界面,又称图形用户接口,是一种通过图形元素(如按钮、文本框、图像等)来与计算机程序进行交互的方式。与传统的命令行界面相比,GUI更加直观和易于使用,因为用户可以直接通过点击、拖拽等方式来完成任务,而无需记忆和输入复杂的命令。GUI......
  • C语言函数编程
    实验1点击查看代码#include<stdio.h>#include<stdlib.h>#include<time.h>#include<windows.h>#defineN80voidprint_text(intline,intcol,chartext[]);//函数声明voidprint_spaces(intn);//函数声明voidprint_blank_lines(intn);/......
  • HIVE SQL 聚合函数与 rows between / range between详解
    HIVESQL聚合函数与rowsbetween/rangebetween详解名词解释unbounded:无边界preceding:根据排序后的结果集选定的当前数据行往前following:根据排序后的结果集选定的当前数据行往后unboundedpreceding:根据排序后的结果集选定的当前数据行往前,即到初始行结束npreceding:往......