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