首页 > 其他分享 >实验3

实验3

时间:2023-04-04 21:24:57浏览次数:33  
标签:return int long 实验 func ans include

task1

程序源码

#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;
 } 
 
 // 打印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);
     print_spaces(col-1);
     printf("%s", text);
  } 
 
 

问题回答:这个程序实现的功能是在0~24行,0~79列随机取两个数,在第line行col列输出hi,April,重复运行十次,每出现一次hi,April则打印line-1行和col-1列空格,并且每次运行中间间隔1000ms,以此做出字符小人跑的动画效果。

 

task2

task2-1

程序源码

//利用局部static变量的特性,计算阶乘

#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;
     printf("p = %lld\n", p);
     p = p*n;
     return p;
  } 
  

程序运行截图

task2-2

程序源码

// 练习:局部static变量特性 

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

程序运行截图

问题回答:static变量第特征是保持变量始终存在,再次进入该函数时,使用上次的结果。

 

task3

程序源码

#include <stdio.h>
#include <math.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 ans;
    if(n==0)
        ans=0;
    else
        ans=(func(n-1)+1)*2-1;
    
    return ans;
 }  

程序运行截图

 

 

task4

程序源码

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

程序运行截图

 

 

task5

task5-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 i;
    double ans=1;
     
    if(x==1||y==0)
         ans = 1;
     if(y > 0){
         for(i = 1; i <= y; ++i)
         ans = ans*x;}
     if(y < 0){
         for(i = -1; i >= y; --i)
         ans = ans/x;}
         
     return ans;
  } 

程序运行截图

task5-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)
 {
     double ans;
     
     if(x==1||y==0)
         ans = 1;
     if(y>0)
         ans = x*mypow(x, y-1);
     if(y<0)
         ans = mypow(x, y+1)/x;
         
     return ans;
  } 

程序运行截图

 

 

task6

程序源码

#include <stdio.h>
void hanoi(unsigned int n, char form, char temp, char to);
void moveplate(unsigned int n, char from, char to);

int count = 0; 

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

程序运行截图

 

 

task7

程序源码

#include<stdio.h>
#include<math.h>

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

int is_prime(int a){
    int i, m;
    
    m = sqrt(1.0*a);
    
    for(i=2; i<=m; i++)
    if(a%i == 0)
        return 0;
    if(i>a)
        return 1;
}

程序运行截图

 

 

task8

程序源码

#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)
 {
     int a=0, b=0, m, n;
    while(s != 0)
    {
        m = s%10;
        if(m%2 != 0)
            a = a*10 + m;
            s = s/10;
    }
    
    while(a != 0)
    {
        n = a%10;
        b = b*10 + n;
        a = a/10;
    }
    
    return b;
  } 

程序运行截图

 

标签:return,int,long,实验,func,ans,include
From: https://www.cnblogs.com/qiuyixuan/p/17287937.html

相关文章

  • HCIP-路由策略实验
      实验要求:利用重发布技术与路由策略满足路由无环且避免选路不佳 实验思路:一、配置IP地址[r1]intg0/0/0[r1-GigabitEthernet0/0/0]ipa192.168.12.124[r1]intg0/0/1[r1-GigabitEthernet0/0/1]ipa192.168.13.124[r1-GigabitEthernet0/0/1]intl0[r1-Loop......
  • 实验一-密码引擎-3-加密API研究
    一、任务详情密码引擎API的主要标准和规范包括:1微软的CryptoAPI2RAS公司的PKCS#11标准3中国商用密码标准:GMT0016-2012智能密码钥匙密码应用接口规范,GMT0018-2012密码设备应用接口规范等研究以上API接口,总结他们的异同,并以龙脉GM3000Key为例,写出调用不同接口的代码,提交......
  • 实验一-密码引擎-加密API研究
    实验一-密码引擎-加密API研究API:应用程序接口(API:ApplicationProgramInterface)是一组定义、程序及协议的集合,通过API接口实现计算机软件之间的相互通信。API的一个主要功能是提供通用功能集。程序员通过使用API函数开发应用程序,从而可以避免编写无用程序,以减轻编程任务。......
  • 实验一-密码引擎-加密API研究
    实验一-密码引擎-加密API研究API:应用程序接口(API:ApplicationProgramInterface)是一组定义、程序及协议的集合,通过API接口实现计算机软件之间的相互通信。API的一个主要功能是提供通用功能集。程序员通过使用API函数开发应用程序,从而可以避免编写无用程序,以减轻编程任务。......
  • 实验一-密码引擎-3-加密API研究
    实验一-密码引擎-3-加密API研究任务详情密码引擎API的主要标准和规范包括:1微软的CryptoAPI2RAS公司的PKCS#11标准3中国商用密码标准:GMT0016-2012智能密码钥匙密码应用接口规范,GMT0018-2012密码设备应用接口规范等研究以上API接口,总结他们的异同,并以龙脉GM3000Key......
  • 实验一-密码引擎-加密API研究
    目录一、查找各种标准的原始文档,研究学习Ⅰ.CryptoAPIⅡ.PKCS#11Ⅲ.GMT0016-2012Ⅳ.GMT0018-2012二、总结这些API在编程中的使用方式Ⅰ.CryptoAPIⅡ.PKCS#11Ⅲ.GMT0016-2012Ⅳ.GMT0018-2012三、列出这些API包含的函数,进行分类,并总结它们的异同3.1CryptoAPI3.1.1基本加密函......
  • 实验一-密码引擎-3-加密API研究
    一、任务详情密码引擎API的主要标准和规范包括:1微软的CryptoAPI2RAS公司的PKCS#11标准3中国商用密码标准:GMT0016-2012智能密码钥匙密码应用接口规范,GMT0018-2012密码设备应用接口规范等研究以上API接口,总结他们的异同,并以龙脉GM3000Key为例,写出调用不同接口的代码,提交......
  • 实验一-密码引擎-3-加密API研究--20201313
    目录微软的CryptoAPI加密技术PKCS#11及CSP接口标准GMT0016-2012GMT0018-20123以龙脉GM3000Key为例,写出调用不同接口的代码(CryptoAPI,PKCS#11,SKF接口),把运行截图加入博客,并提供代码链接3.1CryptoAPI3.1.1龙脉密码钥匙驱动实例工具等\mToken-GM3000\csp\samples\CryptAPI\VC\E......
  • 实验一-密码引擎-3-加密API研究
    任务详情密码引擎API的主要标准和规范包括:1微软的CryptoAPI2RAS公司的PKCS#11标准3中国商用密码标准:GMT0016-2012智能密码钥匙密码应用接口规范,GMT0018-2012密码设备应用接口规范等研究以上API接口,总结他们的异同,并以龙脉GM3000Key为例,写出调用不同接口的代码,提交......
  • 实验一-密码引擎-3-加密API研究
    实验一-密码引擎-3-加密API研究目录实验一-密码引擎-3-加密API研究任务详情0.查找各种标准的原始文档,研究学习(至少包含CryptoAPI,PKCS#11,GMT0016-2012,GMT0018-2012)CryptoAPIPKCS#11GM/T0016-2012智能密码钥匙密码应用接口规范GM/T0018-2012密码设备应用接口规范1.总结这......