今日の問題 以下のうち、ヒトの呼吸器系で最も小さい部位は? ① 肺静脈 ② 気管支 ③ 肺胞 ④ 肺胞囊 ※回答はこちらからログインしてご確認ください 回答はこちら 正解は③ 肺胞です! 肺胞は直径約0.2mmの小さな袋で、両肺で約3億個あるといわれている。広げると、肺胞の表面積は60~70平方メートルほどになる。 関連記事 ・特発性器質化肺炎の自然治癒条件とは 過去の問題 ・2023年11~12月、過去10年間で最多の報告数となった感染症は? ・医学的な文献上で血友病が初めて報告されたのはいつ? ・以下の直木賞・芥川賞受賞者のうち医師でない人物は? // ログイン調査 $(document).ready(function () { // 医師のみの場合 // if (js_class == '医師・研修医') { // $('#answerButton').removeAttr('disabled'); // console.log('医師・研修医IDでログイン中'); // } // ログインしてるか?のみチェック if ('' != sf_id) { $('#answerButton').removeAttr('disabled'); $('#notLoggedText').hide(); } }); const answerButton = document.getElementById('answerButton') answerButton.addEventListener('click', function() { this.classList.toggle('active') const answer = this.nextElementSibling if (answer.style.maxHeight) { answer.style.maxHeight = null } else { answer.style.maxHeight = answer.scrollHeight + 'px' } })