Windows11

Windows 11 OS へのアップグレード

チェックツールのインストール
1.ダウンロードしたインストーラ・ファイル「WindowsPCHealthCheckSetup.msi」を実行する
2

C++

書式
void functionName(parameter1, parameter2, parameter3) {
処理コード
}
使用例

#include <iostream>#i ...

VB.net

書式
Integer.Parse(数値)
Long.Parse(数値)
使用例

Module Module1 Sub Main() Dim num As String = "345.678" '関数fun ...

VB.net

書式
Default Public ReadOnly Property Chars(index As Integer) As Char
現在の String オブジェクト内の指定された位置にある Char オブジェクト ...

VB.net

書式
数値 Mod 2
使用例

Module Module1 Sub Main() Dim num As Integer = 8 Dim num2 As Integer = 9 '関数funcAを呼び出す fun ...

Windows10

操作方法
1.「ここに入力して検索」に「powershell」を入力する

2.->「管理者として実行する」をクリックする

3.次のコマンドを入力してEnterキーで実行する。

PS C ...

Ubuntu 20.04

1.lighttpdをインストール
# sudo apt install lighttpd

2.自動起動を設定
# sudo systemctl enable –now lighttpd ...

Ubuntu 20.04

操作方法
1.リポジトリを追加

# sudo sh -c 'echo "deb stable main" >>/etc/apt/sources.list.d/google-chrome.list'

2. ...

Ubuntu 20.04

操作方法
1.パッケージをアップデート
# sudo apt update

2.Tomcatをインストール
# sudo apt install tomcat9 tomcat9-admin ...

Ubuntu 20.04

操作方法
1.必要なパッケージをインストール

# sudo apt-get install build-essential tar wget

2.最新版をダウンロード

# cd/tmp# wget -c

3 ...

MariaDB

1.データベースの一覧
書式
SHOW {DATABASES | SCHEMAS}
操作例

MariaDB > show databases;+--------------------+|

MariaDB

操作方法
1.データベースを作成
書式 CREATE DATABASE データベース名

MariaDB > CREATE DATABASE testDB;Query OK, 1 row affe ...

MariaDB

書式1
mariadb -u root -pパスワード
使用例

>mariadb -u root -p456pwdWelcome to the MariaDB monitor. Commands end w ...

MariaDB

操作方法
1.「スタート」->「Windowsシステムツール」をクリックする

2.「コントロールパネル」をクリックする

3.「システムとセキュリティ」をクリックする

4.「システム」を ...

MariaDB

ダウンロード

操作方法
1.「mariadb-10.6.4-winx64.msi」をダブルクリックする。

2.「Next」->「I accept the terms in the Lic

Python

書式
使用例

# coding: utf-8cft = res = print (res)

結果

Ubuntu 20.04

1.powersehllのインストール
# sudo snap install powershell –classic
powershell 7.1.4 from Microsoft PowerShell? ...

C#

書式
リスト名.Add(要素)
使用例

using System;using System.Collections.Generic;namespace ConsoleApp1{ class Program { s ...