Files
notes_estom/code_segment/shili.cpp
2021-09-05 00:18:20 +08:00

18 lines
248 B
C++

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