Untitled

Anonymous
c_cpp
11/23/2023 5:37 PM
292 B
11
Indexable
#include <iostream>
using namespace std;

int main() {
	setlocale(LC_ALL, "Russian");
	int a, b, c, d;
	cin >> a >> b >> c;
	cin >> d;
	if (d == 1) cout << a;
	if (d == 2) cout << b;
	if (d == 3) cout << c;
}
Editor is loading...
Leave a Comment