C++

サンプルコード

#include <stdio.h>int maxFunc(int a, int b) {    return a > b ? a : b; }int main(void) { printf(" ...

Python

re.match()
文字列の先頭がパターンにマッチするかどうかを調べる。

サンプルコード

#!/usr/bin/python3import reline = "Cats are smarter than d ...

C++

サンプルコード

#include <stdio.h> int main(){ int a = 5; int b = 20; int c ; if ( a && b ) { printf("Line 1 ...

C++

サンプルコード

#include <stdio.h> int main(){ int c; int a = 10; c = a++; printf("a++計算結果:\n"); printf("Line 1 - c ...

JavaScript

サンプルコード

<style>.classA{ background: #444; color: #eee;}</style><script src="vue.min.js"></scr ...

Java

サンプルコード

package com.arkgame;import java.util.ArrayList;import java.util.Collections;import java.util.List;public 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++

サンプルコード

#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++

サンプルコード

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

Windows10

1.「スタート」メニューの「Sticky Notes」をクリックします。

 

 

 

 

 

&nbs

Python

サンプルコード

import csvwith open('data_demo.csv', 'w') as csv_file: # ヘッダ を設定 fieldnames = writer = csv.DictWriter(csv ...

IT

例1
Str = Regex.Replace(Str, “or”, “”, RegexOptions.IgnoreCase)

例2
(?i)^{3}$ ...

IT

サンプルコード

var http = require("http");function onRequest(request, response) { response.writeHead(200, {"Content-Type" ...

Python

サンプルコード

wrdLst = #文字列のリストnumLst = #数値のリストwrdLst.sort()print (wrdLst) #結果:numLst.sort()print (numLst) #結果:

IOS

サンプルコード
NSMutableDictionary *dictobj = init];

for (id key in dictobj)
{
id value = ;
;
} ...