CPP
cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <iostream>
#include <ifstream>
using namespace std;
int ReadANumber (ifstream&){
int Num{};
while (IFile >> Num){
if (Num > 0)
return Num;
}
}
int main() {
return 0;
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run