comment

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

関連記事

no image

el-table で行をクリックして画面遷移をする方法

element-ui の表で、ある行をクリックすると遷移したい場合。 el-table で次のような row をつくる。 ここでdocID は、遷移先のページ IDを表している。 例 <el-t …

no image

tex で三角形の相似記号を入力する

\sim を使う。 例 $\triangle{ABC} \sim \triangle{DEF}$ 結果

no image

python3 で数字をゼロ埋めして表示する

string の、zfill を使う。 例 n = 3 n0 = str(n).zfill(10) print(n0) 結果 0000000003

no image

〜に向いている を英語で言う方法

〜に向いている lend itself to … (何かに)向いている、適している または be suitable for … という言い方がある。

no image

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

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