「php言語」count関数で配列の値の数をカウントする
サンプルコード
<?php$kk = array("java", "php", "c++", "python","jquery"));echo count($kk) . "\n";?>結果
5 ...
「C言語」setlocale関数でロケールを設定するサンプル
サンプルコード
#include <stdio.h>#include <locale.h>int main(void){ char* tt = setlocale( LC_ALL, NULL ); put ...「C言語」acos()関数で逆余弦を計算するサンプル
サンプルコード
#include <stdio.h>#include <math.h>#define PI 3.14159265int main (){ double x, ret, cft; x = 0 ...「C言語」setlocale関数でロケールを設定するサンプル
サンプルコード
#include <locale.h>#include <stdio.h>#include <time.h> int main (){ time_t currtime; str ...「php言語」ファイルへテキストを書き込むサンプル
サンプルコード
<?php//ファイルを開く$fp = fopen("demo.txt", "w");//ファイルへ書き込みfwrite($fp, "test data1*\n");fwrite($fp, "test da ...「C言語」標準ヘッダlimits.hの定義マクロ
サンプルコード
#include <stdio.h>#include <limits.h>int main(){ printf("The number of bits in a byte %d\n", C ...「C言語」intからdoubleへの型のキャストをするサンプル
サンプルコード
#include <stdio.h> int main(){ int sum = 17, count = 5; double tt; tt = (double) sum/count; printf(" ...「C言語」for文で配列の要素を出力するサンプル
サンプルコード
int main(void) { int i; int a = {13, 14, 15,16,17};/* 配列の要素を出力 */for(i=0;i<5;++i){ printf("%d\n", a); } ...「C言語」for文で多次元配列の要素を出力するサンプル
サンプルコード
#include <stdio.h>
int main(void) {
int i, j;
int a = {106, 107, 108, 109};
「C言語」配列の要素を取得するサンプル
サンプルコード
#include <stdio.h>
int main ()
{
int n;
int i,j;
/* 初期化*/
for ( i = 0; ...
「Spring MVC」パラメータをバリデーションするサンプル
サンプルコード
public class UserManageAction {
@RequestMapping(path = “/test/{username:+}”, method = R ...
階乗(factorial) 計算サンプルコード
サンプルコード
#include <stdio.h>
double factorial(unsigned int i)
{
if(i <= 1)
{
retur ...
「C言語」getchar関数とputchar関数の使い方
サンプルコード
#include <stdio.h>
int main( )
{
int c;
printf( “文字を入力してください :”); ...
「C言語」printf()で変換指定子を利用するサンプル
サンプル1.%dで整数を出力
#include <stdio.h>
int main()
{
int cftIntr = 8;
printf(“Number = %d ...
「C言語」define定数の定義方法
サンプルコード
#include <stdio.h>
#define TRUE 1
#define FALSE 0
int main( )
{
printf( ...
「C言語」構造体とtypedefを利用するサンプル
サンプルコード
#include <stdio.h>
#include <string.h>
typedef struct Books
{
char title; ...
「C言語」列挙型(enum)の使い方
サンプルコード
#include<stdio.h>
enum DAY
{
MON=1, TUE, WED, THU, FRI, SAT, SUN
};
int mai ...
「Spring」fmt:formatDateで日付を指定フォーマットで出力する
属性
pattern フォーマットを直接指定する
type 種別を「DATE」「TIME」「BOTH」から指定
dateStyle スタイルを「FULL」「LONG」「MEDIUM」「SHORT」「DEFAUL ...