今天是2024年11月15日 第46周 星期五

代人,时大变了。

我们生活在大地上,但我们的梦想超越天空。

“User:Honoka55/Sandbox”的版本间的差异

来自Akarin
跳到导航 跳到搜索
 
(未显示另一用户的1个中间版本)
第8行: 第8行:
  
 
 𦋹𫡤𫤪𬍼𰢊𱃝
 
 𦋹𫡤𫤪𬍼𰢊𱃝
 +
 +
<source lang="c">
 +
#include <stdio.h>
 +
int main()
 +
{
 +
int i=0;
 +
while (i<=281474976710655)
 +
{
 +
printf("%x\n", i);
 +
i++;
 +
}
 +
return 0;
 +
}
 +
</source>

2020年7月16日 (四) 19:08的最新版本

𠌕𠱫𠾳𡓃𡫥𡬚𣕤𣗥𣠆𤱓𥹫𥼬𦥏𫁪

𡿦𡿭𣦴𦋹𧾭𨐼𨑂𫡤𫤪𬃷𬍼𬏍𬛳𭭴𰀪𰀱𰁽𰢊𱃝𱄿𱅒𱍂


𡿦𡿭𣦴𧾭𨐼𨑂𰀪𰀱


𦋹𫡤𫤪𬍼𰢊𱃝

<source lang="c">

  1. include <stdio.h>

int main() { int i=0; while (i<=281474976710655) { printf("%x\n", i); i++; } return 0; } </source>