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

代人,时大变了。

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

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

来自Akarin
跳到导航 跳到搜索
标签移动网页编辑 移动版编辑
 
第9行: 第9行:
 
 𦋹𫡤𫤪𬍼𰢊𱃝
 
 𦋹𫡤𫤪𬍼𰢊𱃝
  
 
+
<source lang="c">
 
#include <stdio.h>
 
#include <stdio.h>
 
 
int main()
 
int main()
 
{
 
{
第17行: 第16行:
 
while (i<=281474976710655)
 
while (i<=281474976710655)
 
{
 
{
   printf("%x\n", i);
+
printf("%x\n", i);
   i++;
+
i++;
 
}
 
}
 
return 0;
 
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>