#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 . . .
Learn C++ Programming fast and easy, find C++ Program Codes