Untitled
asuser_0563559
c_cpp
2 years ago
208 B
8
Indexable
#include <iostream>
using namespace std;
int main()
{
setlocale(LC_ALL, "Russian");
int c;
cin >> c;
if (c == 1) {
cout << "meow!";
}
if (c == 2) {
cout << "bark!";
}
}Editor is loading...