Answer» EN problem is solved USING language - C.#include int main() { int n=5,i,j,c; printf("Here is your pattern!!!\n"); for(i=1;i<=2*n-1;i+=2){ for(j=1,c=i;j<=n;j++,c+=2) printf("%d",c%10); printf("\n"); } return 0;}Here, I have assumed that the number of rows is fixed. You can also take 'n' as INPUT from the USER. Here is your pattern!!!1357935791579137913591357See attachment for verification.