zadanie

 avatar
unknown
c_cpp
2 years ago
150 B
5
Indexable
#include <iostream>

using namespace std;

int main()
{
    for ( int i = 50; i <= 0; i -= 6) ;
    {
        cout << i << endl;
    }
    return 0;
}
Editor is loading...