「C言語」continueでdo..whileループをスキップする方法
構文
do{//ループをスキップ if (条件式){//some code continue; }} while(条件式);サンプルコード
#include <stdio.h>int main(void) ...「C言語」do~while文で同じ処理を繰り返すサンプル
構文
do{
some code
}while(条件式);
サンプルコード
#include <stdio.h>int main(void){/* 変数の宣言 */int m = ...「C言語」後置演算子を使うサンプル
構文
変数名–
変数名++
サンプルコード
「C言語」前置演算子を使うサンプル
構文
–変数名
++変数名
使用例
#include <stdio.h>int main(void){ int m = 19; int n = 19; int res1; in ...「C言語」char型変数を使うサンプル
char変数の定義
char 変数名
サンプルコード
#include <stdio.h> int main(void){ char cftA, cftB; cftA = 'T'; cftB = ...「C言語」while文のサンプル
構文
while(条件式){some code}
サンプルコード
#include <stdio.h>int main(){ int i; i=5; while(i < 10){ print ...「C言語」関数のプロトタイプ宣言を使うサンプル
構文
戻り値の型 関数名(引数の型);
サンプルコード
「C言語」引数、戻り値ありの関数を呼び出すサンプル
構文
戻り型 関数名(型 引数1,型 引数2)
サンプルコード
「C言語」グローバル(global)変数とローカル(local)変数を使うサンプル
使用例
#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文で繰り返し処理をするサンプル
構文
for (初期化;条件式;変化式){some code}
サンプルコード
「C言語」switch文のサンプル
構文
switch(条件式){ case 数値1://some code break; case 数値2://some code break; default://some code break;}サンプルコード
# ...「C言語」atof()メソッドで文字列型をfloat型に変換するサンプル
説明
atofで文字列をfloat型の数値に変換
サンプルコード
「C言語」atoi()関数で文字列を数値に変換するサンプル
構文
int atoi( const char *str );
strの文字列をint型数値に変換し、その値を返します。
サンプルコード
「C言語」エスケープシーケンス(特殊文字)を使うサンプル
説明
\n 改行
\r 行頭
\t タブ
\’ シングルクォーテーション
\” ダブルクォーテーション
\\ バックスラッシュ(\)
\? クエスチョンマ ...
「Lua入門」算術演算子のサンプル
説明
+(加算)、 -(減算)、 *(積算)、/(除算)
サンプルコード
a = 21b = 10c = a + bprint("Line 1 - c の値: ", c )c = a - bprint("Li ...「C言語」printf 関数で文字列を出力する
構文
printf(“文字列”);
サンプルコード
#include <stdio.h>int main(void){ printf("study it skill in ...