括号里面

This commit is contained in:
Estom
2021-09-05 00:18:20 +08:00
parent eb1760aa0b
commit d994b489bb
20 changed files with 137 additions and 14 deletions

18
code_segment/shili.cpp Normal file
View File

@@ -0,0 +1,18 @@
#include<iostream>
using namespace std;
int add(int a,int b){
int c = a+b;
return c;
}
int main(){
int a=10,b=11;
add(a,b);
int m = 10;
while(m--){
if(m>5){
cout<<m<<endl;
}
}
return 0;
}