fork download
  1. /*
  2. Input : Number of cases for prime number search and the range of each case
  3.  
  4. 2
  5. 1 10
  6. 3 5
  7.  
  8. Output : The numbers provided by the user
  9. */
  10.  
  11. #include <stdio.h>
  12. void prime(int num, int nim);//This function it's only to print the number on each range from test cases'
  13. int main(void) {
  14. int num, counter;
  15. scanf("%d\n", &num);//Number of cases input
  16. int liCases [2][num];//declaration of arrays dependign to needs
  17. for(counter=0; counter<num; counter++) {
  18. scanf("%d %d\n", &liCases[0][counter], &liCases[1][counter]);//Input of ranges of cases
  19. }
  20. for(counter=0; counter<num; counter++) {
  21. printf("%d %d\n", liCases[0][counter], liCases[1][counter]);//Input of ranges of cases
  22. }
  23. }
Success #stdin #stdout 0s 2056KB
stdin
2
3 5
1 10
stdout
3 5
1 10