This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
このプロジェクトは日本語環境での動作を前提としています。
- コミュニケーション: 日本語で対応してください
- コメント: コードコメントは日本語で記述
Minecraftをダウンロードしてインストールして一回起動 | |
https://www.minecraft.net/ja-jp/ | |
Forgeの1.12.2 - 14.23.5.2768のWindows Installerをダウンロードして起動 | |
https://files.minecraftforge.net/ | |
Install Cleintでインストール。 | |
Minecraft 起動して、起動オプション→新規作成Forge1.12.2でプロファイルを作って、名前はpixcelmon | |
新しいゲームディレクトリを作っていったん起動。.minecraft_pixcelmonなどというフォルダ名にして保存するとよい |
ひつじいる、いない | |
フォーク鯉のぼり | |
右下のジュースの色 | |
猫の柄 | |
猫のしっぽの向き | |
左下の茂みの線の数 | |
左のテーブルの女性のシャツが赤かピンク | |
左下の男性のスプーンが前側後ろ側 | |
左上の男性のジュースの氷が三角か四角か | |
右のテーブルの脚の長さが違う |
/* | |
Converted by scratch2cpp (https://github.com/yos1up/scratch2cpp). | |
*/ | |
#include <iostream> | |
#include <stdlib.h> | |
#include <string> | |
#include <vector> | |
#include <algorithm> | |
#include <math.h> | |
#define debug cerr << "--" << __LINE__ << "--" << "\n" |
#include <iostream> | |
#include <vector> | |
using namespace std; | |
double average(vector<int> AVR) { | |
double sum = 0; | |
int length = AVR.size(); | |
for (int i = 0; i < length; i++) { | |
sum += AVR[i]; |