<input type="radio" name='nn'>
<input type="radio" name='nn'>
<input type="radio" name='nn'>
<div><img src="" alt=""></div>
<script>
var arr = ['https://javascript.ru/cat/list/dom.gif', 'https://javascript.ru/cat/list/event.gif', 'https://javascript.ru/cat/list/integr.jpg'];
document.querySelectorAll('input').forEach((el,i) => el.onchange = e => document.querySelector('div>img').src = el.checked?arr[i]:'');
</script>