Untitled
Anonymous
c_cpp
10/18/2023 7:42 PM
308 B
13
Indexable
#include <iostream>
#include <string>
#include <iomanip>
#include <cmath>
using namespace std;
int main()
{
int a = 0;
cin >> a;
if (a == 1) {
cout << "meow!";
}
else if (a == 2) {
cout << "bark!";
}
}Editor is loading...