今日の問題 1918~20年に大流行したスペインかぜ。世界の推計感染者数は? ① 約4,500万人 ② 約8,000万人 ③ 約1億5,000万人 ④ 約6億人 ※回答はこちらからログインしてご確認ください 回答はこちら 正解は④ 約6億人です! 1918~20年に流行したスペインかぜは、世界の感染者数が約6億人、死亡者数が2,000万~4,000万人と推計されている。現在では、スペインかぜはA型インフルエンザウイルスによる感染症であったことが分かっている。 関連記事 ・誕生月が幼児期のインフルに関連? 過去の問題 ・日本では過去、「売血」が合法的に行われていた。○か×か? ・医師国家試験が春と秋の年2回から年1回実施となった年は? ・日本で遠隔診療が認められたのはいつ? // ログイン調査 $(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' } })