Players A and B alternate writing one digit to make a six-figure number. That means A writes digit $a$, B writes digit $b$, ... to make a number $\overline{abcdef}$.
$a,b,c,d,e,f$ are distinct, $a\neq 0$.
A is the winner if this number is composite, otherwise B is. Is there any way to help A or B always win?
If I understand it well, the players will tell $3$ digits of the number each. And given the distribution of primes among natural numbers (between $100,000$ and $1,000,000$, there are approximately $7.656\%$ of prime numbers), it is very likely that $A$ wins almost every time with numbers chosen at random (more than $92\%$ chance).
I'll attempt to show an intuitive and not-so-much-theoretical approach.
For $A$ to win every time, they just have to choose $e$ so that the final number cannot be a prime. We can show this is possible by pointing out that there is a way to choose $e$ and get no primes for every number between $\overline{abcde0}$ and $\overline{abcde9}$ for all distinct $a$, $b$, $c$, $d$, in $\left[0; 9\right]$, $a\ne0$.
I computed it with a Python program, and it appears that there are no hundreds between $100,0\text{xx}$ and $1,000,0\text{xx}$ that satisfy these conditions. We can always find some $e$ so that the final number is forced to be composite.
On the other hand, this shows that it is impossible to provide a strategy for $B$ to win, if $A$ chooses their digits well.
Hope that this suits your game rules (which I may have misunderstood), let me know in the comment section.