C言語

使用例

#include <stdio.h>int main(void){/* 面積 */float area;/* 三角形の辺 */float x, y;/* 高 */printf("直角三角形の辺と高さを入力:\ ...

C言語

説明文
回文数は右から読んでも、左から読んでも同じ数字の列となっている数です。
使用例

#include <stdio.h> int main(){ int n, reversedInteger = ...

C言語

構文
void srand(unsigned seed);
srand関数は引数に適当な値を渡し、rand関数で乱数を生成

サンプルコード

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

C言語

構文
乱数を生成 rand()
RAND_MAX 最大値
使用例

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

C言語

構文
x || y
使用例

#include <stdio.h> int main(void){/* 変数の宣言 */int num;/* 数値の入力 */printf("please enter n ...

C言語

構文
x && y
使用例

#include <stdio.h> int main(void){ int num;/* 数値の入力 */printf("please enter num ...

C言語

操作方法
1.MinGWのインストール
(1).「mingw-get-setup.exe」をダブルクリックします。

(2).「Install」をクリックします。

(3).「Continue」をク ...

C言語

構文
strcmp(str1, str2)
同じ文字列なら「0」を取得します。
サンプルコード

#include <stdio.h>#include <string.h>int m ...

C言語

構文
strlen(str)
文字列strの長さを取得します。

サンプルコード

#include <stdio.h>#include <string.h>int main(vo ...

C言語

構文
char *strcat(char * restrict s1,const char * restrict s2
);
文字列を連結します。
使用例

#include <stdio.h ...

C言語

構文
char *strcpy(char *s1, const char *s2);
文字列のコピー
s1 コピー先
s2 コピー元
使用例

#include <stdio.h> ...

C言語

説明
char *strcpy(char * restrict s1,const char * restrict s2
);
使用例

#include <stdio.h>#include &l ...

C言語

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

サンプルコード

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

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 = ...