CPP
cpp
1
2
3
4
5
6
7
8
9
10
#include <iostream>
using namespace std;
int main() {
//circle
cout << " ___" << endl;
cout << "/ \" << endl;
cout << "| |" << endl;
cout << "\___/" << endl;
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run