#include <iostream>
using namespace std;
int main()
{
for (int count = 26; count > -1; count -= 2)
{
cout << count << ", ";
}
cout << endl;
return 0;
}
[output]
26, 24, 22, 20, 18, 16, 14, 12, 10, 8, 6, 4, 2, 0,
Press any key to continue . . .
using namespace std;
int main()
{
for (int count = 26; count > -1; count -= 2)
{
cout << count << ", ";
}
cout << endl;
return 0;
}
[output]
26, 24, 22, 20, 18, 16, 14, 12, 10, 8, 6, 4, 2, 0,
Press any key to continue . . .