Untitled
Anonymous
plain_text
10/15/2023 8:43 AM
272 B
16
Indexable
// задача на циклы
#include <iostream>
using namespace std;
int main()
{
int count = 0;
cin >> count;
for (int i = 0; i <= count; i++)
{
cout << i << " . ";
}
return 0;
}Editor is loading...