C++
- voluntas
- @ignis_fatuus
- ブン
- @Linda_pp
- 清楚なC++メイドBOT
- @tzik_tack
- 長谷川一輝
- wraith13
- @jj1bdx
- @cpp_akira
- 安藤敏彦
- @srz_zumix
- Siv3D
- takezoh
- まろ
- @okdshin
- @hnokx
- @ishidakei
- @take_cheeze
- TAKEI Yuya
- @mumumu
- I (@wx257osn2)
- Tommy6
- @tyottyoworks
- ___shanon
- わたやん
- @KorekaraSEDB
- @kariya_mitsuru
- @ciniml
- @beam2d
- @grafi_tt
- @nekketsuuu
- LouiS0616
- @volanja
- 大鎌広
- むてら
- ガチKGB
- 三重野賢人
x
25
1
2
3
using std::cout;
4
using std::string;
5
6
string binary(string dotted){
7
string undottedIP[4];
8
int n = 0;
9
for(int i = 0; i<32; i++){
10
if(dotted[i] != '.')
11
undottedIP[n] += dotted[i];
12
else
13
n++;
14
}
15
16
for(int i = 0; i<4; i++)
17
cout<<undottedIP[i]<<" ";
18
19
return undottedIP[0];
20
}
21
22
int main(){
23
string temp = binary("1.0.0.0");
24
}
25
$ g++ prog.cc -Wall -Wextra -std=c++11 -pedantic
Start
1 0 0 0@@�@
0
Finish