首页 > 其他分享 >实验三

实验三

时间:2024-04-27 10:34:13浏览次数:16  
标签:3405472 int long 实验 func return 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); // 暂停1000ms
	}
	system("pause");
	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中字符串
}

![](/i/l/?n=24&i=blog/3405472/202404/3405472-20240427095842977-223524462.png)

TASK 2

点击查看代码
// 利用局部static变量的特性,计算阶乘

#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;
}
![](/i/l/?n=24&i=blog/3405472/202404/3405472-20240427100511417-672301316.png)
点击查看代码
// 利用局部static变量的特性,计算阶乘

#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=%11d\n",p);
    p = p * n;
    return p;
}
![](/i/l/?n=24&i=blog/3405472/202404/3405472-20240427100637508-1767016480.png)

TASK 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;
}
![](/i/l/?n=24&i=blog/3405472/202404/3405472-20240427100717492-906127438.png) 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){
int i,s=1;
if(n==0)
s=1;
for(i=1;i<=n;i++)
s=s*2;
s=s-1;
if(n==0)
return s;
else
return 2*func(n-1)+1;
}
![](/i/l/?n=24&i=blog/3405472/202404/3405472-20240427100851682-1190187950.png) TASK 4 迭代
点击查看代码
#include <stdio.h>
#include <stdlib.h>
#include <math.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) {
return 0;
}

int result = 1;
int denominator = 1;

for (int i = 1; i <= m; i++) {
result *= n;
result /= denominator;
n--;
denominator++;
}

return result;
}
![](/i/l/?n=24&i=blog/3405472/202404/3405472-20240427101253656-478817202.png) 递归
点击查看代码
#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)
    {
        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;
    }
}

![](/i/l/?n=24&i=blog/3405472/202404/3405472-20240427101751655-1939688655.png) TASK 5
点击查看代码

#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_s("%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)++;
}
![](/i/l/?n=24&i=blog/3405472/202404/3405472-20240427102014905-190336802.png) TASK 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 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;
}
![](/i/l/?n=24&i=blog/3405472/202404/3405472-20240427102519401-493813057.png)

标签:3405472,int,long,实验,func,return,include
From: https://www.cnblogs.com/minxzbc/p/18161799

相关文章

  • 实验一———美团APP
    墨刀、Axure、Mockplus等原型设计工具优缺点分析:一、墨刀优点:在轻量级的移动端原型制作更加迅速,展示更加方便。缺点:价格较贵,不能画流程图,相对于其他两款功能还不是很全面;应用局限性,专注于app原型设计,在后台和网页稍有乏力;归档能力不足,更倾向于链接、二维码形式输出,不能以文档输......
  • 实验三
    一、实验题目:软件测试二、实验目的 1、熟悉开发环境下的自动化测试工具;1、利用自动化测试工具进行自动化单元测试。三、实验内容1、选择开发环境,IDEA或PYCHARM任选其一;2、基于所选择的开发环境实现对输入的n个整数进行排序的代码;3、对所编写代码设计测试用例;4、基于所选......
  • 实验3 C语言函数应用编程
    task1.c1#include<stdio.h>2#include<stdlib.h>3#include<time.h>4#include<windows.h>5#defineN8067voidprint_text(intline,intcol,chartext[]);//函数声明8voidprint_spaces(intn);//函数声明9voidpri......
  • 实验三.软件测试
    一、实验题目:软件测试二、实验目的1、熟悉开发环境下的自动化测试工具;1、利用自动化测试工具进行自动化单元测试。三、实验内容1、选择开发环境,IDEA或PYCHARM任选其一;2、基于所选择的开发环境实现对输入的n个整数进行排序的代码;3、对所编写代码设计测试用例;4、基于所选择......
  • 实验3 C语言函数应用编程
    task1#include<time.h>#include<windows.h>#defineN80voidprint_text(intline,intcol,chartext[]);//函数声明voidprint_spaces(intn);//函数声明voidprint_blank_lines(intn);//函数声明intmain(){ intline,col,i; chartext[N]=......
  • 实验三
    一、实验题目:软件测试二、实验目的1、熟悉开发环境下的自动化测试工具;2、利用自动化测试工具进行自动化单元测试。三、实验内容1、选择开发环境,IDEA或PYCHARM任选其一;2、基于所选择的开发环境实现对输入的n个整数进行排序的代码;3、对所编写代码设计测试用例;4、基于所选择......
  • 实验3
    1#include<stdio.h>2#include<stdlib.h>3#include<time.h>4#include<windows.h>5#defineN8067voidprint_text(intline,intcol,chartext[]);89voidprint_spaces(intn);//函数声明1011voidprint_blank_li......
  • 实验3
    task1#include<time.h>#include<windows.h>#defineN80voidprint_text(intline,intcol,chartext[]);voidprint_spaces(intn);voidprint_blank_lines(intn);intmain(){intline,col,i;chartext[N]="hi,April~";......
  • 实验3:软件测试
    一、实验题目:软件测试二、实验目的1、熟悉开发环境下的自动化测试工具;1、利用自动化测试工具进行自动化单元测试。三、实验内容1、选择开发环境,IDEA或PYCHARM任选其一;2、基于所选择的开发环境实现对输入的n个整数进行排序的代码;3、对所编写代码设计测试用例;4、基于所选择......
  • 实验三-软件测试
    一、实验题目:软件测试二、实验目的1、熟悉开发环境下的自动化测试工具;1、利用自动化测试工具进行自动化单元测试。三、实验内容1、选择开发环境,IDEA或PYCHARM任选其一;2、基于所选择的开发环境实现对输入的n个整数进行排序的代码;3、对所编写代码设计测试用例;4、基于所选择......