how to do it in c++? The loop should display the value of the variables i and j
ID: 3816298 • Letter: H
Question
how to do it in c++?
Explanation / Answer
int main(0
{
int i,j;
for(i=0;i<10;i++)
{
j=10-i;
c.out("The value of i is ");
c.out(i);
c.out(" The value of j is ")
c.out(j);
c.out(" ");
}
return 0;
}
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.