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

实验3 函数应用编程

时间:2022-11-07 14:59:22浏览次数:35  
标签:return 函数 int 编程 long char 实验 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, November~";
srand(time(0));
for(i = 1; i <= 10; ++i) {
line = rand() % 25;
col = rand() % 80;
print_text(line, col, text);
Sleep(1000);
}
return 0;
}

void print_spaces(int n) {int i;
for(i = 1; i <= n; ++i)
printf(" ");
}

void print_blank_lines(int n) {
int i;
for(i = 1; i <= n; ++i)
printf("\n");
}

void print_text(int line, int col, char text[]) {
print_blank_lines(line-1); 
print_spaces(col-1); 
printf("%s", text); 
}

在随机位置生成“hi,November~”

 

实验任务2

2-1

#include <stdio.h>
#include<stdlib.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));
    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<stdlib.h>
#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);
    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<stdlib.h>
#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);
    }
    system("pause");
    return 0;
}

long long func(int n)
{
    int i;
    long long a = 1;
    for (i = 0; i < n; i++)a = a * 2;
    return a - 1;
}

 

 

实验任务4

#include<stdlib.h>
#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));
    system("pause");
    return 0;
}

int func(int n,int m)
{
    if(n==m||m==0)return 1;
    else if(n<m)return 0;
    else if(n>m){
            double i;
            for(i=1;m!=0;--m){
                i=i*1.0*n/m;
                --n;
            }
            return i;
        }
            
}

 

 

实验任务5

#include<stdio.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)
{
    int i;
    int x = 0;
    for (i = 0; i < n; i++)
    {
        x = x + m;
    }
    return x;
}

 

 

实验任务6

#include<stdio.h>
#include<stdlib.h>
void hanoi(unsigned int n,char from,char temp,char to);
void moveplate(unsigned int n,char from,char to);
int count=0;
int main()
{
    unsigned int n;
    while(scanf_s("%u",&n)!=EOF){
    hanoi(n,'A','B','C');
    printf("一共移了%d次\n",count);
    count=0;
    }
    system("pause");
    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);
    count++;
}

 

 

实验任务7

#include <stdio.h>
int is_prime(int n);
int main()
{    int num, f;
    int stop = 0;
    int i = 2;
    while (i < 20)
    {   i += 2;
        for (int k = 2; k < i;k++)
        {   num = i - k;
            f = is_prime(num);
            if (f)
            {printf("%d = %d + %d\n", i, k, num);
             stop = 1;}
            if (stop) break; }
        stop = 0;}
 return 0;
}
int is_prime(int n)
{if (n == 1) return 0;

    for (int i = 2;i < n;i++)
    {
        int stop = 0;
        if (n % i == 0)
        {return 0;
         stop = 1;
        }
        if (n == 2 || (n % i != 0 && i == n - 1)) return 1;
        if (stop) break;}
}

 

 

实验任务8

#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 x[500];
    long y=0;
    int c;
    for (c=0;s!=0;s=s/10)
    {
        if (s % 2 != 0)
        {
            x[c] = s - s / 10 * 10;
            c++;
        }
    }
    for (c=c-1; c >= 0; c--)
        y = 10 * y + x[c];
    return y;
}

标签:return,函数,int,编程,long,char,实验,printf,include
From: https://www.cnblogs.com/jody0-0/p/16865912.html

相关文章

  • 什么是 Python?Python 基础编程入门指南
    Python是当今最流行的编程语言之一。Python以其简单的语法和多功能性而闻名,既易于学习又可用于高级应用程序。可以使用Python的领域也非常广泛,人工智能、机器学习、Web开......
  • 实验2:Open vSwitch虚拟交换机实践
    实验2:OpenvSwitch虚拟交换机实践一、实验目的1.能够对OpenvSwitch进行基本操作;2.能够通过命令行终端使用OVS命令操作OpenvSwitch交换机,管理流表;3.能够通过Mininet的Pyt......
  • 实验4 类与数组、指针
    task5.cpp#include<iostream>#include"vectorInt.hpp"voidtest(){usingnamespacestd;intn;cin>>n;vectorIntx1(n);for(autoi......
  • 实验二:逻辑回归算法实验
    实验二:逻辑回归算法实验【实验目的】1.理解逻辑回归算法原理,掌握逻辑回归算法框架;2.理解逻辑回归的sigmoid函数;3.理解逻辑回归的损失函数;4.针对特定应用场景及数据,能......
  • 【C++高级编程】(一)C++速成
    本章内容:简要回顾C++语言最重要的部分及语法(主要讲述日常编程会遇到的最重要的C++部分,大佬快速浏览即可) 1.1C++基础知识C++是基于C语言的超集,但这两种语言并不一......
  • 012 Rust 异步编程,在 async 块中使用?
    在Rust异步编程中能否像在同步编程中一样使用问号呢?我们来试试。示例源码[dependencies]futures="0.3"配置文件usefutures;asyncfnfoo()->Result<(),String>{"f......
  • 013 Rust 异步编程,Send trait 相关
    asyncfnFuture是否为Send的取决于是否在.await点上保留非Send类型。编译器尽其所能地估计值在.await点上的保存时间。示例源码usestd::rc::Rc;#[derive(Default)]struct......
  • 011 Rust 异步编程,返回错误
    在Rust异步块中,当发生返回错误的时,会是怎么样的呢?本节就这个知识点进行讲解。示例源码usefutures;asyncfnfoo(){"foo"}fnmain(){futures::executor::block_on......
  • 010 Rust 异步编程,使用 select 宏的条件
    使用select宏select中使用的Future必须实现Unpintrait和FusedFuturetrait。必须实现unpin的原因是,select中使用的future不是按值获取的,而是按照可变引用获取的,通过不获取f......
  • 009 Rust 异步编程,select 宏中的使用 default 和 complete
    说明在前一节,我们简单介绍了select宏。其实在select宏中,还可使用default和complete,前者表示没有分支完成,而后者则表示所有的分支都已经完成并且不会再取得进展的情况。示例......