首页 > 其他分享 >实验3

实验3

时间:2023-04-02 16:57:56浏览次数:45  
标签:return int long char 实验 func include

task 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);
    }

    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,April~”,共输入十个。

 

task 2

程序源码:

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

程序运行(加了一行代码前):

 

程序运行(加了一行代码后):

task2_2.c

程序源码:

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

程序运行:

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

程序运行:

 

task 4

程序源码:

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

程序运行:

 

task 5.1

程序源码:

#include<stdio.h>
double mypow(int x, int y);

int main() {
    int x, y;
    double ans;

    while (scanf("%d%d", &x, &y) != EOF) {
        ans = mypow(x, y);
        printf("%d的%d次方:%g\n\n", x, y, ans);
    }
    return 0;
}

double mypow(int x, int y) {
    int t, i;

    if (y < 0) {
        t = -y;}
    else { t = y; }

    double sum = 1;
    for (i = 1; i <= t; i++) {
        sum *= x;}

    if (y > 0) { 
        return sum; }
    else { 1.0 / sum; }
}

程序运行:

 

task 5.2

程序源码:

#include<stdio.h>
double mypow(int x, int y);

int main() {
    int x, y;
    double ans;

    while (scanf("%d%d", &x, &y) != EOF) {
        ans = mypow(x, y);
        printf("%d的%d次方:%g\n\n", x, y, ans);
    }
    return 0;
}

double mypow(int x, int y) {
    if (y == 0) { 
        return 1; }
    if (y > 0) { 
        return x * mypow(x, y - 1); }
    if (y < 0) { 
        return 1.0 / x * mypow(x, y + 1); }
}

程序运行:

 

task 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 tot;

int main() {
    unsigned int n;
    while (scanf("%u", &n) != EOF) {
        tot = 0;
        hanoi(n, 'A', 'B', 'C');
        printf("一共移动了%d次\n", tot);}
    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) {
    tot ++;
    printf("%u:%c-->%c\n", n, from, to);
}

程序运行:

 

task 7

程序源码:

#include<stdio.h>
int is_prime(int x);

int main() {
    int i, n;
    while (scanf("%d", &n) != EOF) {
        for (i = 2; i <= n; i++) {
            if (!is_prime(i) || !is_prime(n - i))continue;
            printf("%d = %d + %d\n", n, i, n - i);
            break;
        }
    }
    return 0;
}

int is_prime(int x) {
    int i;
    for (i = 2; i *i<= x; i++) {
        if (x % i == 0) {
            return 0;}
        else { 
            return 1; }
    }
}

程序运行:

 

task 8

程序源码:

#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 t = 0, t1 = 0;
    while (s > 0) {
        int tmp = s % 10;
        s /= 10;
        if (tmp % 2 == 1)t1 = t1 * 10 + tmp;
    }
    while (t1 > 0) {
        t = t * 10 + (t1 % 10);
        t1 /= 10;
    }
    return t;
}

程序运行:

 

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

相关文章

  • 实验三
    task1源代码#include<stdio.h>#include<stdlib.h>#include<time.h>#include<windows.h>#defineN80voidprint_text(intline,intcol,chartext[]);voidprint_spaces(intn);voidprint_blank_line(intn);intmain(){intl......
  • 实验3
    TEST1源码:#include<stdio.h>#include<stdlib.h>#include<time.h>#include<Windows.h>#defineN80voidprint_text(intline,intcol,chartext[]);voidprint_spaces(intn);voidprint_blank_lines(intn);intmain(){  intline,col,i;   ......
  • 实验三
    实验任务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);intmain(){i......
  • 实验三
    task.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);intmain(){intline,co......
  • 实验一-密码引擎-3-加密API研究
    密码引擎API的主要标准和规范包括:1微软的CryptoAPI2RAS公司的PKCS#11标准3中国商用密码标准:GMT0016-2012智能密码钥匙密码应用接口规范,GMT0018-2012密码设备应用接口规范等研究以上API接口,总结他们的异同,并以龙脉GM3000Key为例,写出调用不同接口的代码,提交博客链接和代......
  • 实验三
    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);1......
  • 202031607221-王彦润 实验一 软件工程准备—博客园技巧与博客首秀
    1、项目和内容简介项目内容班级博客链接2023年春软件工程本次作业要求链接实验一我的课程学习目标注册博客园和Github账号,学习使用博客园,了解Github的基本操作本次作业在哪些方面帮我实现学习目标1.初步了解博客园软件和Github的基本操作;初步了解学......
  • 202031603143-郭思彤 实验一 软件工程准备-对软件工程的初步了解
    项目内容班级博客链接20级卓越班本次作业要求链接实验一软件工程准备我的课程学习目标1.深入使用博客园进行学习2.了解Github的基本操作3.拓展关于软件工程的知识本次作业在哪些方面帮我实现学习目标1.学会了使用markdown编辑器的基本操作2.通过提问......
  • 202031607128-张政文 实验一 软件工程准备
    1、项目和内容简介项目内容班级博客链接2023年春软件工程(2020级计算机科学与技术)(西北师范大学-计算机科学与工程学院)本次作业要求链接实验一软件工程准备我的课程学习目标注册博客园和Github账号,学习使用博客园,了解Github的基本操作。本次作业在哪些......
  • 202031607230-王格 实验一 软件工程准备--构建之法与博客首秀
    实验一软件工程准备项目内容班级博客链接2023年春软件工程本次作业要求链接实验一软件工程准备我的课程学习目标1.学习博客园软件开发者学习社区使用技巧和经验。2.了解Github工具的基本操作3.阅读《现代软件工程—构建之法》,深入了解什么是软件工程......