哈喽大家好,我是@菜就多练,输不起,就别玩,今天我来和大家分享函数
函数就是在主函数上方的位置写,但也可以在下面写,常见函数类型有int double bool string char.......
不同函数类型它们的用法也不同,有判断的(bool),有计算的(int long long double),还有字符串的(char string)等等等等
那么,我们来看代码吧!
#include<bits/stdc++.h>
using namespace std;
bool ph(变量名,比如int x,int y){
一系列的操作....
return 返回值;(true 或 false);
}
int dh(变量名,比如int x,int y){
一系列的操作....
return 变量;
}
int main(){
return 0;
}
调用函数时,是用函数名(输入的变量);
还用,函数还可一做很多的游戏
今天的分享九到这里了,那么有兴趣的小伙伴不要忘记关注哦,我们下期不见不散,拜拜!
标签:return,函数,int,c++,char,bool,long From: https://blog.csdn.net/chenyuanxinde/article/details/139212162