investigated the options to return an array from a function

This commit is contained in:
2021-10-16 09:19:44 +02:00
parent d3138a4b13
commit d6287d6002
10 changed files with 127 additions and 0 deletions
@@ -0,0 +1,11 @@
#include <iostream>
using namespace std;
int main(){
for(int i=1; i<=100;i++){
if(i%2!=0) continue;
cout<<i<<endl;
}
}