https://blog.s-giken.net/370.html
ポート 443 を使用して VMware を停止する方法 – VMware ポート 443 を変更する
https://windowsloop.com/stop-vmware-from-using-port-443/
UbuntuでPHPを実行する
https://symfoware.blog.fc2.com/blog-entry-855.html
Apacheの起動と停止方法
https://www.javadrive.jp/apache/install/index3.html#section3
Apache起動時に「Could not reliably determine the server’s fully qualified domain name」のエラー
https://ex1.m-yabe.com/archives/2965
C言語練習問題5
#include <stdio.h>
int main(void)
{
int money,potion,ether,sword,shield,payment,change;
double tax;
potion = 100;
ether = 1000;
sword = 1500;
shield = 500;
money = 10000;
tax = 1.10;
payment = (int)((potion + ether * 2) * tax);
change = money – payment;
printf(“%dGn”,change);
return 0;
}
【C++入門】基本入出力
https://www.youtube.com/watch?v=DiI-oqWIVCc
【C++入門】C++とは
【ゲーム製作入門】C-C++で簡単なRPGを作る①【DXライブラリ】
【ゲーム製作入門】C-C++で簡単なRPGを作る①【DXライブラリ】
http://nut-softwaredevelopper.hatenablog.com/entry/2015/05/03/183027
【ゲーム製作入門】C-C++で簡単なRPGを作る②【DXライブラリ】
http://nut-softwaredevelopper.hatenablog.com/entry/2015/05/04/012416
【ゲーム製作入門】C-C++で簡単なRPGを作る③【DXライブラリ】
http://nut-softwaredevelopper.hatenablog.com/entry/2015/05/11/174719
【ゲーム製作入門】C-C++で簡単なRPGを作る④【DXライブラリ】 – ここまで ..-
http://nut-softwaredevelopper.hatenablog.com/entry/2015/05/11/205727
C++ ラベルとbreak文
#include <iostream>
using namespace std;
int main()
{
int n;
cout << “整数を入力せよ:”;
cin >> n;
switch (n){
case 0: cout << “A”;
cout << “B”;
break;
case 2: cout << “C”;
case 5: cout << “D”;
break;
case 6:
case 7:cout << “E”;
break;
default:cout << “F”;
break;
}
cout << “n”;
return 0;
}