Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main() {
- int a[4];
- for(int i = 0; i < 4; i++) {
- cout << "Enter a[" << i << "]=";
- cin >> a[i];
- }
- for(int i = 0; i < 4; i++) {
- cout << a[i];
- }
- return 0;
- }
Add Comment
Please, Sign In to add comment