Untitled
Anonymous
c_cpp
10/18/2023 2:24 PM
276 B
18
Indexable
#include <iostream>
using namespace std;
int main()
{
for (int i = 0; i < 25; i++)
if (i % 5 == 0)
cout << '@';
else
if (i % 2 == 0)
cout << '*';
else
cout << '-';
return 0;
}Editor is loading...