Question #58225

Write a program which produces the given sequence nos. (in alternate arrangement ) using the three looping statements:
1,5,2,4,3,3,4,2,5,1

Expert's answer

#include <iostream>

using namespace std;

int main()
{
cout << 1 << "," << 5;
for (int i = 2, j = 4; i < 6; i++, j--)
{
cout <<","<< i << "," << j;
}
cout << "\n";
system("pause");
return 0;
}
LATEST TUTORIALS
APPROVED BY CLIENTS