mirror of
https://inf-git.fh-rosenheim.de/studavrije7683/cplusplus-training.git
synced 2026-06-29 01:23:21 +00:00
investigated the options to return an array from a function
This commit is contained in:
Binary file not shown.
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
Binary file not shown.
Reference in New Issue
Block a user