Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,868 questions

51,791 answers

573 users

How to use for loop with multiple variables of the same type in C++

1 Answer

0 votes
#include <iostream>

int main(void) {
    for (int i = 0, j = 10; i < 10 && j > 0; i++, j--) {
        std::cout << "i = " << i << " - j = " << j << "\n";
    }
        
    return 0;
}




/*
run:

i = 0 - j = 10
i = 1 - j = 9
i = 2 - j = 8
i = 3 - j = 7
i = 4 - j = 6
i = 5 - j = 5
i = 6 - j = 4
i = 7 - j = 3
i = 8 - j = 2
i = 9 - j = 1

*/

 



answered Jan 4, 2022 by avibootz

Related questions

...