Answer:
Step1:start
step2: enter the ten number
s3: if the number is divided by 2 then print even number
s4: otherwise print odd number
s5:stop
Hey lad, your questions options should be:
a. Carrying capacity increases population size.
b. Carrying capacity determines maximum populations size.
c. Population size is not affected by carrying capacity.
d. Population size increases the carrying capacity.
And B: Carrying capacity determines maximum populations size should be the right answer.
hope you get a victory royale with cheese on your assignment
Answer:
Please find the answer below
Explanation:
// Online C compiler to run C program online
#include <stdio.h>
int main() {
// Write C code here
//printf("Hello world");
int userNum;
int i;
int j;
scanf("%d", &userNum);
/* Your solution goes here */
for(i = 0; i<=userNum; i++){
for(j = 0; j <= i; j++){
printf(" ");
}
printf("%d\n", i);
}
return 0;
}