Computer Science, asked by swampurnamitra, 10 months ago

write an algorithm for the following and draw flowchart :
1)Create a table of 5 up to range 10
( class 5. )
No IRRELEVANT answer.
Irrelevant answers will be reported immediately.
ANd URGENT​
See you will get100 points​

Answers

Answered by InFocus
0

Answer:

#include <stdio.h>

int main() {

   int n, i;

   printf("Enter an integer: ");

   scanf("%d", &n);

   for (i = 1; i <= 10; ++i) {

       printf("%d * %d = %d \n", n, i, n * i);

   }

   return 0;

}

Explanation:

Similar questions