Untitled
unknown
plain_text
2 years ago
166 B
4
Indexable
#include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
int temp = n;
int n1;
while (temp > 0) {
cin >> n1;
temp -= 1;
}
}
Editor is loading...
#include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
int temp = n;
int n1;
while (temp > 0) {
cin >> n1;
temp -= 1;
}
}