首页 > 编程语言 >C语言函数编程

C语言函数编程

时间:2024-04-27 15:56:57浏览次数:13  
标签:3405395 函数 int 编程 long C语言 char func 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, April~";
	
	srand(time(0)); // 以当前系统时间作为随机种子
	
	for(i = 1; i <= 10; ++i) {
		line = rand() % 25;
		col =  rand() % 80;
		print_text(line, col, text);
		Sleep(1000);  // 暂停1000ms
	}
	
	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/3405395/202404/3405395-20240427152800453-925934535.png) 在隔着随机行,随机空格,生成10个"hi, April~"

实验2
2.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;
 
    p = p * n;

    return p;
}
![](/i/l/?n=24&i=blog/3405395/202404/3405395-20240427153231904-1278967918.png) 增加一行后 ![](/i/l/?n=24&i=blog/3405395/202404/3405395-20240427153259795-248579784.png)

2.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;
}
![](/i/l/?n=24&i=blog/3405395/202404/3405395-20240427153442250-763741467.png) 一致 存放在static中的东西函数结束时不会消失。且只在函数中使用。

实验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)// 函数定义
{
long long s;
if(n==1)
s=1;
else
s=func(n-1)*2+1;	

return s;

}
![](/i/l/?n=24&i=blog/3405395/202404/3405395-20240427154122117-138503998.png)

实验4
4.1

点击查看代码
#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){
	double s,x,i,y;
	
	if(n<m)
	s=0;
	else if(m==n&&m==0)
	s=1;
	else{
	for(s=1,i=1;i<=m;i++){
	x=(n-m+i)/i;
		s*=x;
	}
	}		
return s;
	
}
// 待补足。。。
![](/i/l/?n=24&i=blog/3405395/202404/3405395-20240427154343901-1265130572.png)

4.2

点击查看代码
#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 s;
	if(m>n)
	s=0;
	else if(m==n||m==0)
	s=1;
	else
	 s=func((n-1),m)+func((n-1),(m-1));
	
	return s;
}
![](/i/l/?n=24&i=blog/3405395/202404/3405395-20240427154417581-1851657982.png)

实验5

点击查看代码
#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 main(){
	unsigned int n;
	int i=0;
	while(scanf("%u",&n)!=EOF){
		hanoi(n,'A','B','C');
		i=pow(2,n)-1;
	printf("一共移动了%d次\n",i);
	}
	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);

}
![](/i/l/?n=24&i=blog/3405395/202404/3405395-20240427154513496-1633747162.png)

实验6

点击查看代码
#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 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/3405395/202404/3405395-20240427154605609-1583191791.png)

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

相关文章

  • HIVE SQL 聚合函数与 rows between / range between详解
    HIVESQL聚合函数与rowsbetween/rangebetween详解名词解释unbounded:无边界preceding:根据排序后的结果集选定的当前数据行往前following:根据排序后的结果集选定的当前数据行往后unboundedpreceding:根据排序后的结果集选定的当前数据行往前,即到初始行结束npreceding:往......
  • 实验3 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);//函数声......
  • 面向对象编程
    在面向对象编程的世界里,程序中的数据和操作数据的函数是一个逻辑上的整体,我们称之为对象,对象可以接收消息,解决问题的方法就是创建对象并向对象发出各种各样的消息;通过消息传递,程序中的多个对象可以协同工作,这样就能构造出复杂的系统并解决现实中的问题面向对象编程:把一组数据和处......
  • 编程心得
    在没进一中信息学竞赛班之前,我并不觉得自己是一个菜鸟,但当我第一次接触它时,我妥协了。。。前面的代码还可以,样例基本都是随便过的,直到学到循环开始,我蒙圈了。什么“for()”“while()”“多重循环”等等等等,让我不知所以然,但也没办法,只能依靠老师和伙伴这么凑活着学。在放寒假的第......
  • access数据库批量更新中无法使用replace,出现“表达式中 'replace' 函数未定义”的替代
    如果我们想要批量修改数据库table_name表中aa字段中数据,将“|bbbb”删除sql的批量更新中,通用语法是:UPDATEtable_nameSETaa=REPLACE(aa,'|bbbb','')但是,如果是access数据库,就可能出现以下的报错信息:MicrosoftJETDatabaseEngine错误'80040e14'表达式中'replace'函......
  • 数据结构_链表_双向循环链表的初始化、插入、删除、修改、查询打印(基于C语言实现)
    版本:2024年4月26日V1.0发布于博客园/***@filename:DoubleLinkedList.c*@brief:实现双向循环链表的相关功能*@author:[email protected]*@date:2024/04/26*@version:1.0*@note:*CopyRight(c)2023-2024RISE_AND......
  • 实验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......
  • 自定义单链表队列的基本接口函数(非循环队列)
    单链表构建队列的接口函数/********************************************************************文件名称: 单链表构建队列的接口函数文件作者:[email protected]创建日期:2024/04/26文件功能:对单链表循环队列的增删改查功能的定义注意事项:NoneCop......
  • vue箭头函数、js-for循环、事件修饰符、摁键事件和修饰符、表单控制、完整购物车版本
    【箭头函数】1<!DOCTYPEhtml>2<htmllang="en">3<head>4<metacharset="UTF-8">5<title>Title</title>6<scriptsrc="https://cdn.jsdelivr.net/npm/vue/dist/vue.js">&l......
  • 实验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]=......