Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

CC2 LEC – Activity 4

John Kenneth N. Salgado


BSIT- 1M2
Answers :
1. #include<stdio.h>
int main()
{
int x;
x=2;
do
{
printf("%d",x);
printf(" ");
x=x+2;
} while(x<=10);
}

2. #include <stdio.h>
int main()
{
int x,y;
x=1;
do
{
y=1;
do {
printf("%d", y);

y++;
}
while(y<=3);
printf(" ");
x++;

} while (x<=2);

You might also like