Contact: aviboots(AT)netvision.net.il
39,861 questions
51,782 answers
573 users
#include <iostream> using namespace std; int main() { for (int i = 5, j = 0; i >= 0; i--, j++) { cout << i << " : " << j << endl; } } /* run: 5 : 0 4 : 1 3 : 2 2 : 3 1 : 4 0 : 5 */