「java」splitメソッドで文字列を分割するサンプル
サンプルコード
package com.arkgame.cft;
public class Splittest {
public static void main(String cs = cft.s ...
「Lua入門」for文の書き方
書き方
for var=exp1,exp2,exp3 do
<some code>
end
サンプルコード
#!/usr/local/bin/lua function f(x) p ...「Lua入門」whileの基本使い方
サンプルコード
a=10while( a < 15 )do print("a の値:", a) a = a+1end
実行結果
a の値:10
a の値:11
a の値:12 ...
「Lua入門」論理演算子booleanを利用するサンプル
サンプルコードprint(type(true))print(type(false))print(type(nil)) if false or nil then print("at least true")else print("false ...
「Python」remove()とappend()で要素を削除、追加
1.removeメソッドで要素を削除
cftLst =
cftLst.remove(5)
print(cftLst)
実行結果
2.appendメソッドで要素を追加
c
「Python3」リスト(list)の使い方
サンプルコード
#!/usr/bin/python3 list = cftLst = print (list) print (list) print (list) print (list) print (cftLst * 2) ...「C++」配列の要素数を取得する
サンプルコード
#include <iostream>using namespace std; #include <iomanip>using std::setw; int main (){ int n; ...C言語で文字列を逆にするサンプル
サンプルコード
#include <stdio.h>void reverseSentence(); int main(){ printf("文字列を入力してください: "); reverseSentence(); r ...「C言語」fgets関数でファイルを読み込むサンプル
サンプルコード
#include <stdio.h> int main(){ FILE *fp = NULL; char buff; fp = fopen("/tmp/test.txt", "r"); fscanf( ...「C言語」fputs関数の使い方
サンプルコード
#include <stdio.h> int main(){ FILE *fp = NULL; fp = fopen("/tmp/demo.txt", "w+"); fprintf(fp, "This ...「C言語」アルファベット(A to Z)の連続を出力するサンプル
サンプルコード
#include <stdio.h> int main(){ char c; for(c = 'A'; c <= 'Z'; ++c) printf("%c ", c); return 0;}「C言語」配列の最大値を探すサンプル
サンプルコード
#include <stdio.h> int main() { int array = {1, 2, 3, 4, 5, 6, 7, 8, 9, 0}; int loop, largest; large ...「C言語」union共用体の使い方
サンプルコード
#include <stdio.h>#include <string.h> union Data{ int i; float f; char str;}; int main( ){ uni ...「C言語」struct構造体の使い方
サンプルコード
#include <stdio.h>struct Books{ char title; char author; char subject; int book_id;} book = {"C言語入門" ...「C言語」continueで繰り返し処理のループをスキップするサンプル
サンプルコード
#include <stdio.h> int main (){/* 変数の宣言 */int a = 10;/* do ループ*/do { if( a == 15) {//ループをスキップ a = a ...「C言語」typedef struct による構造体の定義サンプル
サンプルコード
#include <stdio.h>#include <string.h> typedef struct Books{ char title; char author; char subj ...「C言語」gets()とputs()関数の使い方
サンプルコード
#include <stdio.h> int main( ){ char str; printf( "Enter a value :"); gets( str ); printf( "\nYou en ...「C言語」フィボナッチ数を計算するサンプル
サンプルコード
#include <stdio.h> int fibonaci(int i){ if(i == 0) { return 0; } if(i == 1) { return 1; } return fib ...