comment

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

関連記事

no image

fputs を使って文字列を出力する方法

C言語で文字列を出力するときは、printf を使うことができる。 printf の代わりに fputs を使って文字列を出力することができる。 出力に変数をしなくてもよいときは、fputs のほうが …

no image

matplotlib で複数のグラフを並べて表示する方法

plot.subplots() でグラフの縦方向と横方向の数を指定する。 例 import numpy as np from matplotlib import pyplot as plt x1 = …

no image

map::find で、iterator の場所を探す方法

以下の例のプログラムでは、 探した iterator の場所から、map の終わりの場所までに対応する要素をコンソールに表示する。 例 #include <iostream> #include …

no image

c++ で文字列(string)の長さを取得する方法

length() で取得する。 例 #include <iostream> #include <string> using namespace std; int main () { str …

no image

tex で差集合の記号を入力する方法

\setminus を使う。 例 $A \setminus B$ 結果