https://qiita.com/kamyu/items/1d39d4e57f04a3ad6b0c
2021年11月15日月曜日
2021年11月14日日曜日
2021年10月27日水曜日
2021年10月14日木曜日
Git Commitを実行したら、「Author identity unknown」エラー
https://yutaka-gakushu.com/tips/git/author-identity-unknown-error
2021年10月7日木曜日
2021年10月3日日曜日
2021年9月29日水曜日
2021年9月28日火曜日
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
ポート 443 を使用して VMware を停止する方法 – VMware ポート 443 を変更する
https://windowsloop.com/stop-vmware-from-using-port-443/
2021年9月27日月曜日
Apache起動時に「Could not reliably determine the server’s fully qualified domain name」のエラー
https://ex1.m-yabe.com/archives/2965
2021年7月11日日曜日
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("%dG\n",change);
return 0;
}
登録:
投稿 (Atom)