返回

daily study 3

发布时间:2023-05-17 02:59:48 225

学习goto语句,可以直接跳到需要的位置。

学习函数,分为库函数和自定函数,学习函数的参数,调用,嵌套调用和链式调用,函数的声明和定义,函数的递归

c语言库函数:io函数,字符串操作函数,字符操作函数,内存操作函数,时间/日期操作函数,数学函数,其他库函数。

了解了两个c语言参考网站​​https://legacy.cplusplus.com/reference/​​

​​https://zh.cppreference.com/w/%E9%A6%96%E9%A1%B5​​

自定函数:函数类型  函数名(函数参数){

语句项

}

//#include

//int get_max(int x, int y)

//{

// if (x > y)

//  return x;

// else

//  return y;

//}

//int main()

//{

// int a, b;

// printf("enter tow num>");

//  scanf("%d%d", &a, &b);

//  int max=get_max(a, b);

//  printf("the large num is>%d", max);

//

// return 0;

//}

#include

void Swap(int* x, int* y)

{

int tmp = 0;

tmp = *x;

*x = *y;

*y = tmp;

}

int main()

{

int a, b;

printf("please enter tow num to exchange>");

scanf("%d%d",&a,&b);

printf("a is %d,b is %d\n", a, b);

Swap(&a, &b);

printf("after exchange,a is %d,b is %d", a, b);

return 0;

}

特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报
评论区(0)
按点赞数排序
用户头像
精选文章
thumb 中国研究员首次曝光美国国安局顶级后门—“方程式组织”
thumb 俄乌线上战争,网络攻击弥漫着数字硝烟
thumb 从网络安全角度了解俄罗斯入侵乌克兰的相关事件时间线
下一篇
冒泡、数组逆序 2023-05-17 00:13:07