薬を夜だけ2個飲む日数をxとします。3個飲む日数をyとします。
連立一次方程式
$$x+y=26$$
$$2x+3y=63$$
の2つの式が出来ます。y=26-xですので 2x+3(26-x)=63 です。
$$2x+78-3x=63$$
$$-x=-15$$
$$x=15$$
答えは15日間、夜だけ2個飲む。11日間は3個飲む。

4月13日で飲み終わるので、4月7日頃もう一箇所(歯科)の予約だったのでその時ですね。病院をまとめていくのは。水曜日なので、A病院は午前中です。
薬を夜だけ2個飲む日数をxとします。3個飲む日数をyとします。
$$x+y=26$$
$$2x+3y=63$$
の2つの式が出来ます。y=26-xですので 2x+3(26-x)=63 です。
$$2x+78-3x=63$$
$$-x=-15$$
$$x=15$$
答えは15日間、夜だけ2個飲む。11日間は3個飲む。
4月13日で飲み終わるので、4月7日頃もう一箇所(歯科)の予約だったのでその時ですね。病院をまとめていくのは。水曜日なので、A病院は午前中です。
<script>
'use strict';
let enemyEnagy = 100;
window.alert('戦闘スタート!')
while(enemyEnagy > 0){
let attackEnagy = Math.floor(Math.random() * 30) + 1;
enemyEnagy -= attackEnagy;
console.log('敵のエネルギーは:' + enemyEnagy + 'になりました。');
}
console.log('Conguraturation 敵は消滅しました。!')
</script>
<script>…</script>間以外は同じ
もしかしたら、gooブログよりは画像が綺麗かも!でも画像の大きさが元の大きさと違っているかもしれません。あとから少し多くくするようにしてみましたが、どうですか?多分ですが、画像の大きさを大きくしてみたのですが、CSSで決められているのか、結果的には変わりません。残念。
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>テンプレート</title>
<link href="../../_common/images/favicon.ico" rel="shortcut icon">
<link href="https://fonts.googleapis.com/css?family=M+PLUS+1p:400,500" rel="stylesheet">
<link href="../../_common/css/style.css" rel="stylesheet">
</head>
<body>
<header>
<div class="container">
<h1>タイトル</h1>
<h2>サブタイトル</h2>
</div><!-- /.container -->
</header>
<main>
<div class="container">
<section>
</section>
</div><!-- /.container -->
</main>
<footer>
<div class="container">
<p>JavaScript Samples</p>
</div><!-- /.container -->
</footer>
<script>
'use strict';
const answer = window.prompt('ヘルプを見ますか?');
if(answer === 'yes')
window.alert('タップでジャンプ、障害物を避けます');
else if (answer ==='no')
window.alert('ゲーム起動中...');
else
window.alert('yesかnoで答えてください');
</script>
</body>
</html>
<h1>CSS入門その2</h1>
<h2>追加の見出し</h2>
<div id="main">
<p class="red">cssこれはサンプルです</p>
</div>
ワードプレスの場合もカスタムCSSで少し、簡単に弄ることが出来ます。
body {
font-family: "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
}
<!-- コメント
div {
background: #d2e4b3;
width: 300px;
padding: 0px;
text-align: center;
border: 1px solid #000000;
margin: 30px auto;
}
コメント -->
h1 {
margin-top: 0px;
margin-bottom: 10px;
font-size: xx-large;
color: Blue;
text-align:center;
}
h2 {
margin-top: 0px;
margin-bottom: 10px;
font-size: large;
color: yellow ;
text-align:center;
}
.red{color: red;}
#main{
background: #d2e4b3;
width: 650px;
padding: 0px;
<!-- コメント /*position: absolute;*/ -->
<!-- コメント /*top: 55px;*/ -->
<!-- コメント /*background-image: url(./img/back.gif);*/ -->
<!-- コメント /*width:100%;*/ -->
font-size: x-large;
text-align:center;
border: 1px solid #cccccc;
margin: 30px auto;
}
<!-- コメント -->
p {
color: black;
}
カスタムCSSに上を書いてみました。よく分かりませんが、カスタムCSSは割と簡単に変更できるようです。
cssこれはサンプルです
ワードプレスの場合もカスタムCSSで少し、簡単に弄ることが出来ます。
cssこれはサンプルです
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UFT-8">
<title>CSS</title>
<!--スタイルシートを別ファイルで持ちます-->
<link REL="stylesheet" type="text/css" HREF="./StyleSheet/aSampleStyle.css">
</head>
<body>
<div>
<h1>CSS入門</h1>
<h2>cssサンプル</h2>
</div>
<p>ここで文章を追加します</p>
<p>もう一行追加します</p>
</body>
</html>
<!--style-->
body {
/*background: #eaeaea;*/
font-family: Meiryo;
text-align: center;
}
div {
background: #d2e4b3;
width: 300px;
padding: 10px;
text-align: center;
border: 5px solid #cccccc;
margin: 30px auto;
}
/* h1 CSS入門 */
h1 {
color: rgb(158, 58, 58);
}
/* h2 cssサンプル*/
h2{
color: rgb(38, 105, 38);
font-family: 'Courier New', Courier, monospace;
}
下はスタイルシート、上はそれを呼び出す方。