C言語

構文

do{//ループをスキップ if (条件式){//some code continue; }} while(条件式);

サンプルコード

#include <stdio.h>int main(void) ...

C言語

構文
do{
some code
}while(条件式);

サンプルコード

#include <stdio.h>int main(void){/* 変数の宣言 */int m = ...

C言語

構文
変数名–
変数名++
サンプルコード

#include <stdio.h>int main(void){ int m = 120; int n = 120; int res1 ...

C言語

構文
–変数名
++変数名

使用例

#include <stdio.h>int main(void){ int m = 19; int n = 19; int res1; in ...

C言語

char変数の定義
char 変数名

サンプルコード

#include <stdio.h> int main(void){ char cftA, cftB; cftA = 'T'; cftB = ...

C言語

構文
while(条件式){some code}

サンプルコード

#include <stdio.h>int main(){ int i; i=5; while(i < 10){ print ...

C言語

構文
戻り値の型 関数名(引数の型);
サンプルコード

#include <stdio.h>/* 関数のプロトタイプ宣言 戻り値なし*/void funcA(void);/* 関数のプロトタイプ宣言 ...

C言語

構文
戻り型 関数名(型 引数1,型 引数2)
サンプルコード

#include <stdio.h> int sampleFunc(int x, int y){ return x -y;} int m ...

C言語

使用例

#include <stdio.h>/* グローバル変数 */int cftA=120; void func(){/* 関数のローカル変数 */int cftB=140; printf("function p ...

C言語

構文
void 関数名(型 引数1,型 引数2);

サンプルコード

#include <stdio.h>void testfunc(int x, int y){/* 変数の宣言 */int res ...

C言語

構文
main() {
void 関数名();
}

サンプルコード

#include <stdio.h> void testfunc(void){ printf("this is ...

C言語

構文
for (初期化;条件式;変化式){some code}
サンプルコード

#include <stdio.h> int main(void){ int i;/* 繰り返し処理 */for(i=0 ...

C言語

構文

switch(条件式){ case 数値1://some code break; case 数値2://some code break; default://some code break;}

サンプルコード

# ...

C言語

説明
atofで文字列をfloat型の数値に変換
サンプルコード

#include <stdio.h>#include <stdlib.h>int main(void) { char st ...

C言語

構文
int atoi( const char *str );
strの文字列をint型数値に変換し、その値を返します。
サンプルコード

#include <stdio.h>#include ...

C言語

説明
\n 改行
\r 行頭
\t タブ
\’ シングルクォーテーション
\” ダブルクォーテーション
\\ バックスラッシュ(\)
\? クエスチョンマ ...

Lua

説明
+(加算)、 -(減算)、 *(積算)、/(除算)

サンプルコード

a = 21b = 10c = a + bprint("Line 1 - c の値: ", c )c = a - bprint("Li ...

C言語

構文
printf(“文字列”);

サンプルコード

#include <stdio.h>int main(void){ printf("study it skill in ...