https://qiita.com/suzuki_y/items/3261ffa9b67410803443
XAMPPを使ってMySQLでデータベースを作成する方法
https://techacademy.jp/magazine/4137
XAMPP起動時にApache Service detected with wrong pathと表示される
https://ja.stackoverflow.com/questions/31925/xampp%E8%B5%B7%E5%8B%95%E6%99%82%E3%81%ABapache-service-detected-with-wrong-path%E3%81%A8%E8%A1%A8%E7%A4%BA%E3%81%95%E3%82%8C%E3%82%8B
XAMPPのApacheが起動しない!
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
