View Code of Problem 3697

#include<bits/stdc++.h>
using namespace std;
int T, n, m;
int main() {
	cin >> T;
	while (T--) {
		cin >> n >> m;
		
		if (n < m) {
			for (int i = n; i <= m; i++) {
				cout << i << " frogs have " << i << " mouths, " << i * 2 << " eyes and " << i * 4 << " legs, jump into the water with";
				for (int j = 0; j < i; j++)
					cout << " splash";
				cout << "." << endl;
			}
		}
		else {
			for (int i = n; i >= m; i--) {
				cout << i << " frogs have " << i << " mouths, " << i * 2 << " eyes and " << i * 4 << " legs, jump into the water with";
				for (int j = 0; j < i; j++)
					cout << " splash";
				cout << "." << endl;
			}
		}
	}
	return 0;
}

Double click to view unformatted code.


Back to problem 3697