「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 ...「C言語」条件演算子でmax()関数を実現するサンプル
サンプルコード
#include <stdio.h>int maxFunc(int a, int b) { return a > b ? a : b; }int main(void) { printf(" ...「C言語」論理演算子(&&, ||)を利用するサンプル
サンプルコード
#include <stdio.h> int main(){ int a = 5; int b = 20; int c ; if ( a && b ) { printf("Line 1 ...「C言語」a++と++a演算子を利用するサンプル
サンプルコード
#include <stdio.h> int main(){ int c; int a = 10; c = a++; printf("a++計算結果:\n"); printf("Line 1 - c ...「C言語」配列を初期化するサンプルコード
サンプルコード
#include <stdio.h>int main(void) {//初期化 int cftA = { 41, 42, 43 }; for (int i = 0; i < 3; ++i) { ...「C言語」入力した自然数の総和を計算するサンプル
サンプルコード
#include <stdio.h>int main(){ int n, i, sum = 0; printf("整数を入力してください: "); scanf("%d",&n); for(i= ...「C言語」sizeof演算子の使い方
サンプルコード
#include <stdio.h>int main(){ int a; long b; long long c; double e; long double f; printf("Size of i ...「C言語」数値の大小を判定するサンプル
#include <stdio.h>int main(void){ float m, n; printf("数値を入力してください:\n"); printf("m = "); scanf("%f", & ...
「C++」enumを使って文字列で複数条件を利用するサンプル
サンプルコード
public enum Fruit{ APPLE, BANANA, ORANGE, WATERMELON}public class EnumTest{ public static void main(String ...「C言語」入力した整数が偶数か奇数かを判定するサンプル
サンプルコード
#include<stdio.h> int main(){ int num; printf("整数を入力してください: "); scanf("%d",&num); (num%2==0)?pri ...「C++」string型からint型に変換するサンプル
サンプルコード
#include <stdio.h>#include <string> int main() { std::string cftStr = "6688"; int num = atoi(c ...「C言語入門」文字列の配列を利用する方法
サンプルコード
#include <stdio.h> int main (){ char cft = {'H', 'e', 'l', 'l', 'o', '\0'}; printf("Test data %s\n", ...「C言語」数値を文字列に変換するサンプル
サンプルコード
#include <stdio.h>#include <string.h>int main(void){int num = 15 ;const char str ;printf("a=%c ...「C++入門」newとdeleteの使い方
C++コード
class Test
{
public:
Test() m_a(0){}
Test(int a): m_a(a){}
virtual void foo(){ cout< ...
「C#」Base64形式の文字列と画像を相互変換するサンプルコード
サンプルコード
///<summary>
///画像からBase64文字列に変換
///</summary>
///<param name=”sender ...