├── Hyc └── code ├── DavidWang19 ├── stax code ├── table3.nb ├── table.nb ├── table2.nb └── result.png ├── uye ├── 1.ps1 └── main.py ├── lhhxxxxx ├── 2.nb └── main.pl ├── Helloworld ├── NineNineTable │ ├── README.md │ ├── NineNineTable │ │ ├── NineNineTable.csproj │ │ ├── NumberEnumerator │ │ │ ├── INumberEnumerator.cs │ │ │ └── SequenceNumberEnumerator.cs │ │ ├── NumberMultiplier │ │ │ ├── INumberMultiplier.cs │ │ │ └── NumberPairMultiplier.cs │ │ ├── OutputFormatter │ │ │ ├── NineNineTableData.cs │ │ │ ├── IOutputFormatter.cs │ │ │ └── NineNineTableConsoleOutputFormatter.cs │ │ └── Program.cs │ ├── stylecop.json │ ├── NineNineTable.Test │ │ ├── NineNineTable.Test.csproj │ │ ├── NumberMultiplier │ │ │ └── NumberPairMultiplierTest.cs │ │ ├── NumberEnumerator │ │ │ └── SequenceNumberEnumeratorTest.cs │ │ └── OutputFormatter │ │ │ └── NineNineTableConsoleOutputFormatterTest.cs │ ├── LICENSE │ ├── Directory.build.props │ ├── NineNineTable.sln │ └── .gitignore └── JavaScript │ ├── README.md │ └── NineNineTable.js ├── Ykong ├── index.js ├── Nine.png ├── main.rs ├── ninenine_bg.wasm ├── ninenine.js └── ninenine_bg.js ├── horror-proton ├── mt-cross.wls ├── mt.sh └── meta.cpp ├── dantmnf └── a.rb ├── otakuma └── main.ps1 ├── tursom └── tursom.kts ├── zsqw123 └── 1.rb ├── duskmelon ├── 99.r └── result.png ├── guigui └── guigui.kts ├── 玩水 ├── 72B.js ├── 71B.js └── README.md ├── 鼹鼠 └── main.py ├── FutabaRio └── 1.py ├── XiaoX ├── pic.png └── nnt.js ├── abai └── main.py ├── bakashigure ├── 99.txt ├── c.txt └── readme.md ├── mizu-bai ├── Julia │ ├── 99.jl │ └── 99.png ├── FORTRAN77 │ ├── 99-77.png │ └── 99.F └── Fortran │ ├── 99-90.png │ └── 99.f90 ├── pangbo13 └── code.py ├── 帝宝 ├── result.png └── Main.hs ├── 萱 ├── result.png └── A.java ├── 谦虚 └── 99.js ├── 鬼才 └── Main.kt ├── XiaoMiku01 ├── main.gop └── main.go ├── Yaossg └── 9x9.c ├── cnachen └── 9x9.lua ├── fumiama └── 99.prg ├── jcjrobert └── main.py ├── mizusato ├── 99.png └── 99.rxsc ├── 奶油面包拳 └── index.php ├── HChenZi └── main.js ├── Ns2Kracy └── main.sh ├── lawrenceli ├── main.swift └── swift.png ├── littlewater ├── _99.png └── _99.java ├── Alisa └── main.py ├── foxwhite25 ├── modules.png └── program.png ├── 知秋 └── 透透玛丽.js ├── dragove └── nineNineTable.scala ├── vitex └── main.hs ├── 车前子 └── main.hs ├── 酱香大冰糕 └── main.cpp ├── HikawaRin ├── bash │ └── 99.sh └── csharp │ ├── 99.noproj │ ├── log │ └── errorlog ├── gyro永不抽风 └── 1.py ├── GarfieldTheOldCat └── 9.py ├── blueskybone └── die2.c ├── mr_cino ├── 9x9.wo └── 9x9.magic.wo ├── kokic ├── ninenine-iota.lean ├── ninenine.lean └── README.md ├── BiDuang ├── nineninetable.pas └── README.MD ├── soybean2 └── main.py ├── cglcv └── cfb.m ├── 煖風遲來 └── ceshi.cpp ├── Konoha └── main.py ├── bigonion ├── main.ts └── README.md ├── wniko └── nya.bat ├── cola └── cola.c ├── javilak └── main.cpp ├── FuAon └── main.go ├── 麦子 └── main.cpp ├── StupidBh └── StupidBh.cpp ├── mnixry └── main.py ├── 谓道之求 └── main.cpp ├── src └── NineNineTable.java ├── lucky.py ├── 雅威 └── 源.cpp ├── .github ├── workflows │ └── rank.yml └── gen_list.js ├── d3ara1n └── Playground.cs ├── 哥斯拉 └── main.c ├── dzydoom └── main.asm ├── LICENSE ├── rank.md ├── HisAtri ├── CN.py ├── 九九表.py └── 但求最大.py ├── 一只大鸽子 └── big.glsl ├── Jiang-Red └── main.bf ├── README.md └── Luorenmu └── main.java /Hyc/code: -------------------------------------------------------------------------------- 1 | 9ENUEN'*X'=NX*' J}, -------------------------------------------------------------------------------- /DavidWang19/stax code: -------------------------------------------------------------------------------- 1 | 9mc{b"`n*` =`*"mJ -------------------------------------------------------------------------------- /uye/1.ps1: -------------------------------------------------------------------------------- 1 | 1..9|%{''+(1..++$l|%{" $_*$l="+$_*$l})} -------------------------------------------------------------------------------- /DavidWang19/table3.nb: -------------------------------------------------------------------------------- 1 | Grid@Table[ij==i*j,{j,9},{i,j}] -------------------------------------------------------------------------------- /lhhxxxxx/2.nb: -------------------------------------------------------------------------------- 1 | Grid@Table[ij==i*j,{j,9},{i,j}] 2 | -------------------------------------------------------------------------------- /Helloworld/NineNineTable/README.md: -------------------------------------------------------------------------------- 1 | # NineNineTable 2 | -------------------------------------------------------------------------------- /Ykong/index.js: -------------------------------------------------------------------------------- 1 | import * as r from "./ninenine"; 2 | r.run() -------------------------------------------------------------------------------- /DavidWang19/table.nb: -------------------------------------------------------------------------------- 1 | Grid@Table[Inactivate[i*j]==i*j,{j,9},{i,j}] -------------------------------------------------------------------------------- /DavidWang19/table2.nb: -------------------------------------------------------------------------------- 1 | Grid@Table[Row@{b,"*",a,"=",b*a},{a,9},{b,a}] -------------------------------------------------------------------------------- /horror-proton/mt-cross.wls: -------------------------------------------------------------------------------- 1 | Grid@Table[Cross[i,j]==i*j,{i,9},{j,i}] -------------------------------------------------------------------------------- /dantmnf/a.rb: -------------------------------------------------------------------------------- 1 | $><<(1..9).map{|x|(1..x).map{|y|"#{y}x#{x}=#{y*x}"}*?\t}*?\n -------------------------------------------------------------------------------- /otakuma/main.ps1: -------------------------------------------------------------------------------- 1 | 1..9|%{''+(1..($l=$_)|%{"$_`×$l={0,-2}"-f($_*$l)})} 2 | -------------------------------------------------------------------------------- /tursom/tursom.kts: -------------------------------------------------------------------------------- 1 | (1..9).map{i->println((1..i).map{"$it*$i=${i*it}"})} -------------------------------------------------------------------------------- /zsqw123/1.rb: -------------------------------------------------------------------------------- 1 | 1.upto(9){|i|puts (1..i).map{|j|"#{j}*#{i}=#{j*i}"}*?\t} 2 | -------------------------------------------------------------------------------- /lhhxxxxx/main.pl: -------------------------------------------------------------------------------- 1 | print"@{[map$_.'x'.$r.'='.$_*$r.' ',1..++$r]}\n"for 1..9 2 | -------------------------------------------------------------------------------- /uye/main.py: -------------------------------------------------------------------------------- 1 | for b in(r:=range)(10):print(*(f"{a}*{b}={a*b} "for a in r(b+1))) -------------------------------------------------------------------------------- /duskmelon/99.r: -------------------------------------------------------------------------------- 1 | for(i in 1:9){for(j in 1:i){cat(i,'*',j,'=',j*i,' ')} 2 | cat('\n')} -------------------------------------------------------------------------------- /guigui/guigui.kts: -------------------------------------------------------------------------------- 1 | for(i in 1..9){for(j in 1..i)print("$j*$i=${i*j} ");println()} -------------------------------------------------------------------------------- /玩水/72B.js: -------------------------------------------------------------------------------- 1 | for(i=1;i<10;i++){for(r=j='';jjoin|>println end -------------------------------------------------------------------------------- /pangbo13/code.py: -------------------------------------------------------------------------------- 1 | r=range 2 | for b in r(10):print(*(f"{a}*{b}={a*b}\t"for a in r(1,b+1))) -------------------------------------------------------------------------------- /帝宝/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoluteHell/NineNineTable/HEAD/帝宝/result.png -------------------------------------------------------------------------------- /玩水/71B.js: -------------------------------------------------------------------------------- 1 | for(i=r='';i<10;++i,r+=` 2 | `)for(j=0;jprintln(Range(1,x+1).map(y=>f"$y*$x=${x*y}").mkString("\t"))) 2 | -------------------------------------------------------------------------------- /mizu-bai/FORTRAN77/99-77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoluteHell/NineNineTable/HEAD/mizu-bai/FORTRAN77/99-77.png -------------------------------------------------------------------------------- /mizu-bai/Fortran/99-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoluteHell/NineNineTable/HEAD/mizu-bai/Fortran/99-90.png -------------------------------------------------------------------------------- /mizu-bai/Fortran/99.f90: -------------------------------------------------------------------------------- 1 | program n;do i=1,9;do j=1,i;print'(i2,a1,i1,a1,i2,$)',j,"x",i,"=",i*j;enddo;print*;enddo;end -------------------------------------------------------------------------------- /vitex/main.hs: -------------------------------------------------------------------------------- 1 | import Text.Printf;main=putStrLn$unlines[unwords[printf"%d*%d=%-2d" y x (x*y)|y<-[1..x]]|x<-[1..9::Int]] -------------------------------------------------------------------------------- /车前子/main.hs: -------------------------------------------------------------------------------- 1 | import Text.Printf;main=putStrLn$unlines[unwords[printf"%d*%d=%-2d" y x (x*y)|y<-[1..x]]|x<-[1..9::Int]] -------------------------------------------------------------------------------- /酱香大冰糕/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | main(){for(int i=0,j;i++<9;j=0,puts(""))while(j++');} -------------------------------------------------------------------------------- /blueskybone/die2.c: -------------------------------------------------------------------------------- 1 | #include 2 | main(){int i=0,j;while(i++<9){j=0;while(j++foldl (λ x y=>x++foldl (λ s t=>s!"{s}{t}*{y}={t*y}\t") "" (iota y)++"\n") "" 2 | -------------------------------------------------------------------------------- /BiDuang/nineninetable.pas: -------------------------------------------------------------------------------- 1 | program a;var i,j:integer;begin for i:=1 to 9 do begin for j:=1 to i do write(i,'*',j,'=',i*j,' ');writeln;end;end. -------------------------------------------------------------------------------- /soybean2/main.py: -------------------------------------------------------------------------------- 1 | for i in range(1, 10): 2 | for j in range(1, i + 1): 3 | print(f"{j}*{i}={i*j}", end="\t") 4 | print() 5 | -------------------------------------------------------------------------------- /cglcv/cfb.m: -------------------------------------------------------------------------------- 1 | for i=1:1:9 2 | p=""; 3 | for j=1:1:i 4 | p=p+i+"x"+j+"="+i*j+"\t"; 5 | end 6 | fprintf(p+"\n") 7 | end -------------------------------------------------------------------------------- /煖風遲來/ceshi.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #define f(x,y) for(int x=1;x<=y;++x) 3 | int main(){f(i,9){f(j,i)printf("%d*%d=%d\t",i,j,i*j);printf("\n");}} -------------------------------------------------------------------------------- /Konoha/main.py: -------------------------------------------------------------------------------- 1 | for i in range(1, 10): 2 | k = '' 3 | for j in range(1,i+1): 4 | k+=str(j)+'x'+str(i)+'='+str(i*j)+'\t' 5 | print(k) -------------------------------------------------------------------------------- /bigonion/main.ts: -------------------------------------------------------------------------------- 1 | for (var i:number = 1;i < 10;i++) {var r:string = "";for(let j:number = 1; j < i; j++){r+=`${j}x${i}=${i * j} `}console.log(r)} 2 | -------------------------------------------------------------------------------- /wniko/nya.bat: -------------------------------------------------------------------------------- 1 | @setlocal EnableDelayedExpansion&for /l %%i in (1,1,9)do @set a=&(for /l %%j in (1,1,%%i)do @set/a r=%%j*%%i&set a=!a!%%jx%%i=!r! )&echo !a! -------------------------------------------------------------------------------- /萱/A.java: -------------------------------------------------------------------------------- 1 | interface A{static void main(String[]a){for(int i=1;i<10;++i){for(int j=1;j<=i;)System.out.print(j+"x"+i+"="+i*j+(++j<=i?"\t":"\n"));}}} 2 | -------------------------------------------------------------------------------- /kokic/ninenine.lean: -------------------------------------------------------------------------------- 1 | open List#evalprintln! range 9|>map (·+1)|>foldl (λ x y=>x++foldl (λ s t=>s!"{s}{t}*{y}={t*y}\t") "" (range y|>map (·+1))++"\n") "" 2 | -------------------------------------------------------------------------------- /mr_cino/9x9.magic.wo: -------------------------------------------------------------------------------- 1 | import woo.std;using std;do [1,2,3,4,5,6,7,8,9]->\a=a->>\x=a->>\y=x>=y?F"{x}x{y}={x*y}\t"|"";;;->>\a=(a->>\e=e->print;,println());; 2 | -------------------------------------------------------------------------------- /bakashigure/readme.md: -------------------------------------------------------------------------------- 1 | 使用php -r 执行文件内所有内容 2 | 3 | ![image](https://user-images.githubusercontent.com/33803916/228628346-0a4dd8a5-2473-4888-93d0-3d6c80337125.png) 4 | -------------------------------------------------------------------------------- /cola/cola.c: -------------------------------------------------------------------------------- 1 | #include 2 | int main(){ 3 | for(int i=1;i<=9;i++){ 4 | for(int j=1;j<=i;j++){ 5 | printf("%dx%d=%d\t",j,i,i*j); 6 | } 7 | printf("\n"); 8 | } 9 | } -------------------------------------------------------------------------------- /Ykong/ninenine.js: -------------------------------------------------------------------------------- 1 | import * as wasm from "./ninenine_bg.wasm"; 2 | import { __wbg_set_wasm } from "./ninenine_bg.js"; 3 | __wbg_set_wasm(wasm); 4 | export * from "./ninenine_bg.js"; 5 | -------------------------------------------------------------------------------- /littlewater/_99.java: -------------------------------------------------------------------------------- 1 | public class _99{public static void main(String[]a){for(int i=1;i<=9;i++){for(int j=1;j<=i;j++){System.out.printf("%d*%d=%-3d",j,i,i*j);}System.out.println();}}} 2 | -------------------------------------------------------------------------------- /mizu-bai/FORTRAN77/99.F: -------------------------------------------------------------------------------- 1 | PROGRAM N 2 | DO I=1,9 3 | DO J=1,I 4 | WRITE(*,'(I2,A1,I1,A1,I2,$)')J,"x",I,"=",I*J 5 | ENDDO 6 | WRITE(*,*) 7 | ENDDO 8 | END -------------------------------------------------------------------------------- /javilak/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std;void cx(int a,int b){int c=a*b;cout << a <<"*"< 2 | int main() 3 | { 4 | int i = 1, j = 1; 5 | for (; i < 10; i++) { 6 | for (j=1; j <= i; j++) 7 | printf("%d*%d=%d ", i, j, i * j); 8 | puts(""); 9 | } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /玩水/README.md: -------------------------------------------------------------------------------- 1 | ## 71B 2 | ![71B](https://user-images.githubusercontent.com/16256221/228736883-1b7b1015-6758-48fa-8408-530a3111d3bb.png) 3 | 4 | ## 72B 5 | 6 | ![72B](https://user-images.githubusercontent.com/16256221/228736167-cd86123f-2bdd-468b-884b-8c80000e7063.png) -------------------------------------------------------------------------------- /StupidBh/StupidBh.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | int main() 3 | { 4 | for (int i = 1; i <= 9; ++i) { 5 | for (int j = 1; j <= i; ++j) { 6 | std::cout << j << "*" << i << "=" << i * j << "\t"; 7 | } 8 | std::cout << "\n"; 9 | } 10 | return 0; 11 | } -------------------------------------------------------------------------------- /mnixry/main.py: -------------------------------------------------------------------------------- 1 | import zlib,base64 2 | print(zlib.decompress(base64.b85decode(b'c-j?@IhMsR2n1uzY0M@;(D(YspCY03pc-TQne5MgE2gPf>_Z>E|u>sOB7}+TPi_F+n(fD|azy{8ru5;O^gzhS=;O0sIjgE+96_{miJ6*yska(epE)?H|iqL!<')).decode()) -------------------------------------------------------------------------------- /谓道之求/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(int argc, char *argv[]) 4 | { 5 | for (int i = 1; i <= 9; i++) 6 | { 7 | for (int j = 1; j <= i; j++) 8 | { 9 | std::cout << j << " * " << i << " = " << i * j << " "; 10 | } 11 | std::cout << "\n"; 12 | } 13 | return 0; 14 | } -------------------------------------------------------------------------------- /Helloworld/NineNineTable/NineNineTable/NineNineTable.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net6.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /mizusato/99.rxsc: -------------------------------------------------------------------------------- 1 | namespace :: 2 | entry { 3 | ShowWindow(Window($('99'), new Grid { RowSpacing: 10, Items: { 4 | @map* a = Count(9), let A = (a + 1), 5 | @map b = Count(A), let B = (b + 1), 6 | let text = String(B,'*',A,'=',(B * A)), 7 | Span { item: text, row: a, column: b } 8 | }})) 9 | } 10 | -------------------------------------------------------------------------------- /src/NineNineTable.java: -------------------------------------------------------------------------------- 1 | public class NineNineTable { 2 | public static void main(String[] args) { 3 | for(int i = 1;i <= 9;i++){ 4 | for(int j = 1;j <= i;j++){ 5 | System.out.print("\t" + i + " * " + j + " = " + i * j); 6 | } 7 | System.out.println(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /HikawaRin/csharp/99.noproj: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lucky.py: -------------------------------------------------------------------------------- 1 | from pathlib import Path 2 | import random 3 | 4 | all_players = [str(p) for p in Path(".").glob("*") if p.is_dir() and not p.name.startswith(".")] 5 | print("All Players:", all_players) 6 | print() 7 | 8 | results = random.sample(all_players, 5) 9 | for index, player in enumerate(results): 10 | print(f"Lucky award {index + 1}: {player}") 11 | print("Congratulations!") -------------------------------------------------------------------------------- /雅威/源.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include 5 | using namespace std; 6 | int main(void) { 7 | int a = 1; 8 | int b = 1; 9 | int sum = 0; 10 | for (; a <= 9; a++) { 11 | for (; b <= a; b++) { 12 | sum = a * b; 13 | cout << a<<"*"< rank.md 14 | - uses: stefanzweifel/git-auto-commit-action@v4 15 | -------------------------------------------------------------------------------- /bigonion/README.md: -------------------------------------------------------------------------------- 1 | 1x1=1 2 | 1x2=2 2x2=4 3 | 1x3=3 2x3=6 3x3=9 4 | 1x4=4 2x4=8 3x4=12 4x4=16 5 | 1x5=5 2x5=10 3x5=15 4x5=20 5x5=25 6 | 1x6=6 2x6=12 3x6=18 4x6=24 5x6=30 6x6=36 7 | 1x7=7 2x7=14 3x7=21 4x7=28 5x7=35 6x7=42 7x7=49 8 | 1x8=8 2x8=16 3x8=24 4x8=32 5x8=40 6x8=48 7x8=56 8x8=64 9 | 1x9=9 2x9=18 3x9=27 4x9=36 5x9=45 6x9=54 7x9=63 8x9=72 9x9=81 10 | 11 | **我是说明文档 && 参赛文件,所以我不算大小!(迫真** 12 | 13 | 悲 markdown 输! -------------------------------------------------------------------------------- /BiDuang/README.MD: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | # 九九乘法表 - Pascal 版本 5 | 6 | Powered by BiDuang. 7 | 8 |
9 | 10 | ## 运行结果 11 | 12 | 13 | 14 | ## FAQ 15 | 16 | ### 为什么我没看到显示结果? 17 | 18 | 如果你在使用 FPC 作为你的 IDE,你只需要在运行完程序后打开 `DEBUG` -> `User Screen` 就能看到输出的结果了。 19 | -------------------------------------------------------------------------------- /d3ara1n/Playground.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NineNineTable 4 | { 5 | public class Program 6 | { 7 | public static void Main() 8 | { 9 | for (int i = 1; i < 10; i++) 10 | { 11 | for (int j = 1; j < 10; j++) 12 | { 13 | Console.Write($"{0}*{1}={2}" + j != 9 ? " " : "", i, j, i * j); 14 | } 15 | Console.WriteLine(); 16 | } 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /Helloworld/NineNineTable/NineNineTable/NumberEnumerator/INumberEnumerator.cs: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Helloworld. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | namespace NineNineTable.NumberEnumerator 7 | { 8 | /// 9 | /// The number enumerator. 10 | /// 11 | public interface INumberEnumerator : IEnumerable 12 | { 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Helloworld/NineNineTable/stylecop.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json", 3 | "settings": { 4 | "documentationRules": { 5 | "companyName": "Helloworld", 6 | "copyrightText": "Copyright (c) {companyName}. All rights reserved.\nLicensed under the {licenseName} license. See {licenseFile} file in the project root for full license information.", 7 | "variables": { 8 | "licenseName": "MIT", 9 | "licenseFile": "LICENSE" 10 | } 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /哥斯拉/main.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { 4 | printf("1*1=1\t\n"); 5 | printf("1*2=2\t2*2=4\t\n"); 6 | printf("1*3=3\t2*3=6\t3*3=9\t\n"); 7 | printf("1*4=4\t2*4=8\t3*4=12\t4*4=16\t\n"); 8 | printf("1*5=5\t2*5=10\t3*5=15\t4*5=20\t5*5=25\t\n"); 9 | printf("1*6=6\t2*6=12\t3*6=18\t4*6=24\t5*6=30\t6*6=36\t\n"); 10 | printf("1*7=7\t2*7=14\t3*7=21\t4*7=28\t5*7=35\t6*7=42\t7*7=49\t\n"); 11 | printf("1*8=8\t2*8=16\t3*8=24\t4*8=32\t5*8=40\t6*8=48\t7*8=56\t8*8=64\t\n"); 12 | printf("1*9=9\t2*9=18\t3*9=27\t4*9=36\t5*9=45\t6*9=54\t7*9=63\t8*9=72\t9*9=81\t\n"); 13 | return 0; 14 | } -------------------------------------------------------------------------------- /Helloworld/NineNineTable/NineNineTable/NumberMultiplier/INumberMultiplier.cs: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Helloworld. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | namespace NineNineTable.NumberMultiplier 7 | { 8 | /// 9 | /// The number multiplier. 10 | /// 11 | public interface INumberMultiplier 12 | { 13 | /// 14 | /// Gets the result. 15 | /// 16 | int Result { get; } 17 | } 18 | } -------------------------------------------------------------------------------- /dzydoom/main.asm: -------------------------------------------------------------------------------- 1 | .386 2 | .model flat, stdcall 3 | .stack 4096 4 | 5 | INCLUDELIB ucrt.lib 6 | INCLUDELIB legacy_stdio_definitions.lib 7 | 8 | printf PROTO C : DWORD,:vararg 9 | 10 | .data 11 | fmt DB '%d*%d=%d',09H, 00H 12 | line DB 0aH, 00H 13 | 14 | .code 15 | main PROC 16 | push ebx 17 | push esi 18 | push edi 19 | mov esi, 1 20 | L1: 21 | mov edi, 1 22 | cmp esi, edi 23 | jl L3 24 | mov ebx, esi 25 | L2: 26 | push ebx 27 | push edi 28 | push esi 29 | push OFFSET fmt 30 | call printf 31 | inc edi 32 | add esp, 16 33 | add ebx, esi 34 | cmp edi, esi 35 | jle L2 36 | L3: 37 | push OFFSET line 38 | call printf 39 | inc esi 40 | add esp, 4 41 | cmp esi, 9 42 | jle L1 43 | pop edi 44 | pop esi 45 | xor eax, eax 46 | pop ebx 47 | ret 0 48 | main ENDP 49 | END main -------------------------------------------------------------------------------- /Helloworld/NineNineTable/NineNineTable/OutputFormatter/NineNineTableData.cs: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Helloworld. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | namespace NineNineTable.OutputFormatter 7 | { 8 | using System.Diagnostics.CodeAnalysis; 9 | 10 | /// 11 | /// The nine nine table data. 12 | /// 13 | [ExcludeFromCodeCoverage] 14 | public record NineNineTableData 15 | { 16 | /// 17 | /// Gets or sets the multiplicand. 18 | /// 19 | public int Multiplicand { get; set; } 20 | 21 | /// 22 | /// Gets or sets the multiplier. 23 | /// 24 | public int Multiplier { get; set; } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Helloworld/NineNineTable/NineNineTable/OutputFormatter/IOutputFormatter.cs: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Helloworld. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | namespace NineNineTable.OutputFormatter 7 | { 8 | /// 9 | /// The output formatter. 10 | /// 11 | /// The type of the item. 12 | public interface IOutputFormatter 13 | { 14 | /// 15 | /// Gets the function to output a string. 16 | /// 17 | public Action OutputFunction { get; init; } 18 | 19 | /// 20 | /// Outputs an item. 21 | /// 22 | /// The item. 23 | void Output(T item); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Ykong/ninenine_bg.js: -------------------------------------------------------------------------------- 1 | let wasm; 2 | export function __wbg_set_wasm(val) { 3 | wasm = val; 4 | } 5 | 6 | 7 | const lTextDecoder = typeof TextDecoder === 'undefined' ? (0, module.require)('util').TextDecoder : TextDecoder; 8 | 9 | let cachedTextDecoder = new lTextDecoder('utf-8', { ignoreBOM: true, fatal: true }); 10 | 11 | cachedTextDecoder.decode(); 12 | 13 | let cachedUint8Memory0 = null; 14 | 15 | function getUint8Memory0() { 16 | if (cachedUint8Memory0 === null || cachedUint8Memory0.byteLength === 0) { 17 | cachedUint8Memory0 = new Uint8Array(wasm.memory.buffer); 18 | } 19 | return cachedUint8Memory0; 20 | } 21 | 22 | function getStringFromWasm0(ptr, len) { 23 | return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len)); 24 | } 25 | /** 26 | */ 27 | export function run() { 28 | wasm.run(); 29 | } 30 | 31 | export function __wbg_log_74f8ebb87a4cc7e5(arg0, arg1) { 32 | console.log(getStringFromWasm0(arg0, arg1)); 33 | }; 34 | 35 | -------------------------------------------------------------------------------- /Helloworld/NineNineTable/NineNineTable.Test/NineNineTable.Test.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | enable 6 | enable 7 | 8 | false 9 | true 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Helloworld/NineNineTable/NineNineTable.Test/NumberMultiplier/NumberPairMultiplierTest.cs: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Helloworld. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | namespace NineNineTable.Test.NumberMultiplier 7 | { 8 | using FluentAssertions; 9 | using Microsoft.VisualStudio.TestTools.UnitTesting; 10 | using NineNineTable.NumberMultiplier; 11 | 12 | /// 13 | /// Tests . 14 | /// 15 | [TestClass] 16 | public class NumberPairMultiplierTest 17 | { 18 | /// 19 | /// Tests . 20 | /// 21 | [TestMethod] 22 | public void TestResult() 23 | { 24 | new NumberPairMultiplier(3, 7).Result.Should().Be(21); 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 InvoluteHell 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Helloworld/NineNineTable/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Helloworld 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Helloworld/NineNineTable/NineNineTable/NumberMultiplier/NumberPairMultiplier.cs: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Helloworld. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | namespace NineNineTable.NumberMultiplier 7 | { 8 | /// 9 | /// The number multiplier of a pair of numbers. 10 | /// 11 | public class NumberPairMultiplier : INumberMultiplier 12 | { 13 | /// 14 | /// The left hand side. 15 | /// 16 | private readonly int lhs; 17 | 18 | /// 19 | /// The right hand side. 20 | /// 21 | private readonly int rhs; 22 | 23 | /// 24 | /// Initializes a new instance of the class. 25 | /// 26 | /// The left hand side. 27 | /// The right hand side. 28 | public NumberPairMultiplier(int lhs, int rhs) 29 | { 30 | this.lhs = lhs; 31 | this.rhs = rhs; 32 | } 33 | 34 | /// 35 | public int Result => this.lhs * this.rhs; 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /Helloworld/NineNineTable/NineNineTable.Test/NumberEnumerator/SequenceNumberEnumeratorTest.cs: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Helloworld. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | namespace NineNineTable.Test.NumberEnumerator 7 | { 8 | using System.Collections; 9 | using FluentAssertions; 10 | using Microsoft.VisualStudio.TestTools.UnitTesting; 11 | using NineNineTable.NumberEnumerator; 12 | 13 | /// 14 | /// Tests . 15 | /// 16 | [TestClass] 17 | public class SequenceNumberEnumeratorTest 18 | { 19 | /// 20 | /// Tests . 21 | /// 22 | [TestMethod] 23 | public void TestGetEnumerator() 24 | { 25 | new SequenceNumberEnumerator(1, 9).Should().BeEquivalentTo(new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9 }); 26 | } 27 | 28 | /// 29 | /// Tests . 30 | /// 31 | [TestMethod] 32 | public void TestGetEnumeratorGeneric() 33 | { 34 | ((IEnumerable)new SequenceNumberEnumerator(1, 9)).GetEnumerator().Should().BeEquivalentTo(new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9 }); 35 | } 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /Helloworld/NineNineTable/Directory.build.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | latest-all 5 | true 6 | Helloworld 7 | Helloworld 8 | README.md 9 | Licensed under the MIT license. 10 | MIT 11 | True 12 | 13 | 14 | 15 | full 16 | 17 | 18 | 19 | none 20 | 21 | 22 | 23 | true 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | all 32 | runtime; build; native; contentfiles; analyzers; buildtransitive 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /Helloworld/NineNineTable/NineNineTable.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.5.33516.290 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NineNineTable", "NineNineTable\NineNineTable.csproj", "{0E9FC4D5-205B-4737-B143-1A5CFE7124F6}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NineNineTable.Test", "NineNineTable.Test\NineNineTable.Test.csproj", "{70E2DF6F-A3A6-4E68-82FD-9F289427C763}" 9 | EndProject 10 | Global 11 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 12 | Debug|Any CPU = Debug|Any CPU 13 | Release|Any CPU = Release|Any CPU 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {0E9FC4D5-205B-4737-B143-1A5CFE7124F6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 17 | {0E9FC4D5-205B-4737-B143-1A5CFE7124F6}.Debug|Any CPU.Build.0 = Debug|Any CPU 18 | {0E9FC4D5-205B-4737-B143-1A5CFE7124F6}.Release|Any CPU.ActiveCfg = Release|Any CPU 19 | {0E9FC4D5-205B-4737-B143-1A5CFE7124F6}.Release|Any CPU.Build.0 = Release|Any CPU 20 | {70E2DF6F-A3A6-4E68-82FD-9F289427C763}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 21 | {70E2DF6F-A3A6-4E68-82FD-9F289427C763}.Debug|Any CPU.Build.0 = Debug|Any CPU 22 | {70E2DF6F-A3A6-4E68-82FD-9F289427C763}.Release|Any CPU.ActiveCfg = Release|Any CPU 23 | {70E2DF6F-A3A6-4E68-82FD-9F289427C763}.Release|Any CPU.Build.0 = Release|Any CPU 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | GlobalSection(ExtensibilityGlobals) = postSolution 29 | SolutionGuid = {A7DFFACC-1845-44E1-A84D-392A3DD23AE9} 30 | EndGlobalSection 31 | EndGlobal 32 | -------------------------------------------------------------------------------- /.github/gen_list.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const path = require('path'); 3 | 4 | async function dirSize(dirPath) { 5 | let minSize = Number.MAX_SAFE_INTEGER; 6 | const files = await fs.promises.readdir(dirPath, { withFileTypes: true }); 7 | const exts = ['.md', '.jpg', '.png', '.jpeg', '.log', '.gitignore', '.props', '.json']; 8 | const filteredFiles = files.filter(file => { 9 | const ext = path.extname(file.name); 10 | return !file.name.startsWith('.') && !exts.includes(ext); 11 | }); 12 | const sizes = filteredFiles.map(async file => { 13 | const filePath = path.join(dirPath, file.name); 14 | const stats = await fs.promises.stat(filePath); 15 | if (stats.isDirectory()) { 16 | return await dirSize(filePath); 17 | } 18 | return stats.size; 19 | }); 20 | return await Promise.all(sizes).then(sizes => { 21 | const minSizeInDir = Math.min(...sizes); 22 | return minSizeInDir === Number.MAX_SAFE_INTEGER ? 0 : minSizeInDir; 23 | }); 24 | } 25 | 26 | async function main() { 27 | const currentPath = process.cwd(); 28 | const dirs = await fs.promises.readdir(currentPath, { withFileTypes: true }); 29 | const userSizeMap = new Map(); 30 | for (const dir of dirs) { 31 | if (dir.name.startsWith('.') || !dir.isDirectory()) { 32 | continue; 33 | } 34 | const key = dir.name; 35 | const dirPath = path.join(currentPath, key); 36 | const minSize = await dirSize(dirPath); 37 | if (minSize === 0) { 38 | continue; 39 | } 40 | userSizeMap.set(key, minSize); 41 | } 42 | const userSizeVec = Array.from(userSizeMap.entries()).sort((a, b) => a[1] - b[1]); 43 | console.log('| index | user | size |'); 44 | console.log('|:-----:|:----------:|:---------:|'); 45 | userSizeVec.forEach(([user, size], index) => { 46 | console.log(`\| ${index + 1} | ${user} | ${size} Bytes |`); 47 | }); 48 | 49 | } 50 | 51 | main(); 52 | -------------------------------------------------------------------------------- /HikawaRin/csharp/log: -------------------------------------------------------------------------------- 1 | Microsoft (R) Build Engine version 17.0.1+b177f8fa7 for .NET 2 | Copyright (C) Microsoft Corporation. All rights reserved. 3 | 4 | /tmp/MSBuildTemphikawa/tmp3eb75b59c7394e8f828a6c1a458cc250.tmp(36,13): warning CS0162: Unreachable code detected [/home/hikawa/99/NineNineTable/HikawaRin/csharp/99.noproj] 5 | 1*1=1 6 | 2*1=2 2*2=4 7 | 3*1=3 3*2=6 3*3=9 8 | 4*1=4 4*2=8 4*3=12 4*4=16 9 | 5*1=5 5*2=10 5*3=15 5*4=20 5*5=25 10 | 6*1=6 6*2=12 6*3=18 6*4=24 6*5=30 6*6=36 11 | 7*1=7 7*2=14 7*3=21 7*4=28 7*5=35 7*6=42 7*7=49 12 | 8*1=8 8*2=16 8*3=24 8*4=32 8*5=40 8*6=48 8*7=56 8*8=64 13 | 9*1=9 9*2=18 9*3=27 9*4=36 9*5=45 9*6=54 9*7=63 9*8=72 9*9=81 14 | 15 | Build succeeded. 16 | 17 | /tmp/MSBuildTemphikawa/tmp3eb75b59c7394e8f828a6c1a458cc250.tmp(36,13): warning CS0162: Unreachable code detected [/home/hikawa/99/NineNineTable/HikawaRin/csharp/99.noproj] 18 | 1 Warning(s) 19 | 0 Error(s) 20 | 21 | Time Elapsed 00:00:00.89 22 | Microsoft (R) Build Engine version 17.0.1+b177f8fa7 for .NET 23 | Copyright (C) Microsoft Corporation. All rights reserved. 24 | 25 | /tmp/MSBuildTemphikawa/tmpe12f010667864aa1a9620cab02676eeb.tmp(36,13): warning CS0162: Unreachable code detected [/home/hikawa/99/NineNineTable/HikawaRin/csharp/99.noproj] 26 | 1*1=1 27 | 2*1=2 2*2=4 28 | 3*1=3 3*2=6 3*3=9 29 | 4*1=4 4*2=8 4*3=12 4*4=16 30 | 5*1=5 5*2=10 5*3=15 5*4=20 5*5=25 31 | 6*1=6 6*2=12 6*3=18 6*4=24 6*5=30 6*6=36 32 | 7*1=7 7*2=14 7*3=21 7*4=28 7*5=35 7*6=42 7*7=49 33 | 8*1=8 8*2=16 8*3=24 8*4=32 8*5=40 8*6=48 8*7=56 8*8=64 34 | 9*1=9 9*2=18 9*3=27 9*4=36 9*5=45 9*6=54 9*7=63 9*8=72 9*9=81 35 | 36 | Build succeeded. 37 | 38 | /tmp/MSBuildTemphikawa/tmpe12f010667864aa1a9620cab02676eeb.tmp(36,13): warning CS0162: Unreachable code detected [/home/hikawa/99/NineNineTable/HikawaRin/csharp/99.noproj] 39 | 1 Warning(s) 40 | 0 Error(s) 41 | 42 | Time Elapsed 00:00:00.86 43 | -------------------------------------------------------------------------------- /horror-proton/meta.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | template using fixed_string = std::integer_sequence; 5 | template struct cat_fs; 6 | template using cat_fs_t = typename cat_fs::type; 7 | template 8 | struct cat_fs : cat_fs> {}; 9 | template 10 | struct cat_fs, fixed_string> 11 | : std::type_identity> {}; 12 | template struct fs_to_str; 13 | template struct fs_to_str> { 14 | static constexpr char value[sizeof...(C) + 1] = {C..., '\0'}; 15 | }; 16 | template static constexpr auto fs_to_str_v = fs_to_str::value; 17 | template 18 | struct int_to_fs : std::type_identity> {}; 19 | template using int_to_fs_t = typename int_to_fs::type; 20 | template 21 | struct int_to_fs= 10)>> 22 | : cat_fs, int_to_fs_t> {}; 23 | template 24 | using gen_expr_t = std::conditional_t< 25 | (L >= R), 26 | cat_fs_t, fixed_string<'*'>, int_to_fs_t, 27 | fixed_string<'='>, int_to_fs_t>, 28 | fixed_string<>>; 29 | template 30 | using temp = cat_fs_t, fixed_string<'\t'>>...>; 31 | template struct table; 32 | template 33 | struct table, std::index_sequence> 34 | : std::type_identity< 35 | cat_fs_t, fixed_string<'\n'>>...>> {}; 36 | int main() { 37 | using seq = std::index_sequence<1, 2, 3, 4, 5, 6, 7, 8, 9>; 38 | std::printf("%s", fs_to_str_v::type>); 39 | } 40 | -------------------------------------------------------------------------------- /kokic/README.md: -------------------------------------------------------------------------------- 1 | 2 | # 环境 3 | ``` 4 | $ lean --version 5 | Lean (version 4.0.0-nightly-____, commit ____, Release) 6 | ``` 7 | 8 | **注意: 为压缩长度, 输出阶段现已改为类型检查期, 如果希望在运行期得到结果可以将 `#eval` 改为 ` def main:=`** 9 | 10 | # 检查 11 | ## [ninenine-iota.lean](https://github.com/kokic/NineNineTable/blob/master/kokic/ninenine-iota.lean) (110 Bytes) 12 | 13 | 打开源文件, 将鼠标光标置于当前行任意位置. 打开 Lean Infoview. Message 处可见 14 | ``` 15 | ▼ Messages (1) 16 | ▼ ninenine-iota.lean:1:9 17 | 9*9=81 8*9=72 7*9=63 6*9=54 5*9=45 4*9=36 3*9=27 2*9=18 1*9=9 18 | 8*8=64 7*8=56 6*8=48 5*8=40 4*8=32 3*8=24 2*8=16 1*8=8 19 | 7*7=49 6*7=42 5*7=35 4*7=28 3*7=21 2*7=14 1*7=7 20 | 6*6=36 5*6=30 4*6=24 3*6=18 2*6=12 1*6=6 21 | 5*5=25 4*5=20 3*5=15 2*5=10 1*5=5 22 | 4*4=16 3*4=12 2*4=8 1*4=4 23 | 3*3=9 2*3=6 1*3=3 24 | 2*2=4 1*2=2 25 | 1*1=1 26 | ``` 27 | 28 | # 运行 29 | 30 | ## [ninenine.lean](https://github.com/kokic/NineNineTable/blob/master/kokic/ninenine.lean) 31 | 32 | ``` 33 | $ lean ninenine.lean --run 34 | ``` 35 | 36 | 输出 37 | ``` 38 | 1*1=1 39 | 1*2=2 2*2=4 40 | 1*3=3 2*3=6 3*3=9 41 | 1*4=4 2*4=8 3*4=12 4*4=16 42 | 1*5=5 2*5=10 3*5=15 4*5=20 5*5=25 43 | 1*6=6 2*6=12 3*6=18 4*6=24 5*6=30 6*6=36 44 | 1*7=7 2*7=14 3*7=21 4*7=28 5*7=35 6*7=42 7*7=49 45 | 1*8=8 2*8=16 3*8=24 4*8=32 5*8=40 6*8=48 7*8=56 8*8=64 46 | 1*9=9 2*9=18 3*9=27 4*9=36 5*9=45 6*9=54 7*9=63 8*9=72 9*9=81 47 | ``` 48 | 49 | ## [ninenine-iota.lean](https://github.com/kokic/NineNineTable/blob/master/kokic/ninenine-iota.lean) 50 | 51 | ``` 52 | $ lean ninenine-iota.lean --run 53 | ``` 54 | 55 | 输出 56 | ``` 57 | 9*9=81 8*9=72 7*9=63 6*9=54 5*9=45 4*9=36 3*9=27 2*9=18 1*9=9 58 | 8*8=64 7*8=56 6*8=48 5*8=40 4*8=32 3*8=24 2*8=16 1*8=8 59 | 7*7=49 6*7=42 5*7=35 4*7=28 3*7=21 2*7=14 1*7=7 60 | 6*6=36 5*6=30 4*6=24 3*6=18 2*6=12 1*6=6 61 | 5*5=25 4*5=20 3*5=15 2*5=10 1*5=5 62 | 4*4=16 3*4=12 2*4=8 1*4=4 63 | 3*3=9 2*3=6 1*3=3 64 | 2*2=4 1*2=2 65 | 1*1=1 66 | ``` 67 | 68 | -------------------------------------------------------------------------------- /Helloworld/NineNineTable/NineNineTable/NumberEnumerator/SequenceNumberEnumerator.cs: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Helloworld. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | namespace NineNineTable.NumberEnumerator 7 | { 8 | using System.Collections; 9 | using System.Collections.Generic; 10 | 11 | /// 12 | /// The sequence number enumerator. 13 | /// 14 | public sealed class SequenceNumberEnumerator : INumberEnumerator 15 | { 16 | /// 17 | /// The starting value. 18 | /// 19 | private readonly int start; 20 | 21 | /// 22 | /// The ending value. 23 | /// 24 | private readonly int end; 25 | 26 | /// 27 | /// Initializes a new instance of the class. 28 | /// 29 | /// The starting value, inclusive. 30 | /// The ending value, inclusive. 31 | public SequenceNumberEnumerator(int start, int end) 32 | { 33 | this.start = start; 34 | this.end = end; 35 | } 36 | 37 | /// 38 | IEnumerator IEnumerable.GetEnumerator() 39 | { 40 | return this.GetEnumeratorInternal(); 41 | } 42 | 43 | /// 44 | IEnumerator IEnumerable.GetEnumerator() 45 | { 46 | return this.GetEnumeratorInternal(); 47 | } 48 | 49 | /// 50 | /// Gets enumerator. 51 | /// 52 | /// The enumerator. 53 | private IEnumerator GetEnumeratorInternal() 54 | { 55 | return Enumerable.Range(this.start, this.end - this.start + 1).GetEnumerator(); 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Helloworld/NineNineTable/NineNineTable/Program.cs: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Helloworld. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | namespace NineNineTable 7 | { 8 | using System.Diagnostics.CodeAnalysis; 9 | using NineNineTable.NumberEnumerator; 10 | using NineNineTable.NumberMultiplier; 11 | using NineNineTable.OutputFormatter; 12 | 13 | /// 14 | /// The main program. 15 | /// 16 | [ExcludeFromCodeCoverage] 17 | internal sealed class Program 18 | { 19 | /// 20 | /// The starting value of nine nine table. 21 | /// 22 | private const int NineNineTableStartingValue = 1; 23 | 24 | /// 25 | /// The ending value of nine nine table. 26 | /// 27 | private const int NineNineTableEndingValue = 9; 28 | 29 | /// 30 | /// The main function. 31 | /// 32 | /// The arguments. 33 | internal static void Main(string[] args) 34 | { 35 | INumberEnumerator multiplicandEnumerator = new SequenceNumberEnumerator(NineNineTableStartingValue, NineNineTableEndingValue); 36 | 37 | IOutputFormatter outputFormatter = new NineNineTableConsoleOutputFormatter(data => $"{data.Multiplicand}*{data.Multiplier}={new NumberPairMultiplier(data.Multiplicand, data.Multiplier).Result}"); 38 | 39 | var nineNineTable = multiplicandEnumerator 40 | .SelectMany(multiplicand => new SequenceNumberEnumerator(NineNineTableStartingValue, multiplicand).Select(multiplier => (multiplicand, multiplier))) 41 | .Select(pair => new NineNineTableData() 42 | { 43 | Multiplicand = pair.multiplicand, 44 | Multiplier = pair.multiplier, 45 | }); 46 | 47 | foreach (var item in nineNineTable) 48 | { 49 | outputFormatter.Output(item); 50 | } 51 | } 52 | } 53 | } -------------------------------------------------------------------------------- /Helloworld/NineNineTable/NineNineTable/OutputFormatter/NineNineTableConsoleOutputFormatter.cs: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Helloworld. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | namespace NineNineTable.OutputFormatter 7 | { 8 | using System; 9 | 10 | /// 11 | /// The output formatter for nine nine table. 12 | /// 13 | public class NineNineTableConsoleOutputFormatter : IOutputFormatter 14 | { 15 | /// 16 | /// The item separator. 17 | /// 18 | private const string Separator = " "; 19 | 20 | /// 21 | /// The formatter to format the item to string. 22 | /// 23 | private readonly Func formatter; 24 | 25 | /// 26 | /// The last multiplicand. When it changes, output a newline first. 27 | /// 28 | private int lastMultiplicand; 29 | 30 | /// 31 | /// Initializes a new instance of the class. 32 | /// 33 | /// The formatter to format the item to string. 34 | public NineNineTableConsoleOutputFormatter(Func formatter) 35 | { 36 | this.formatter = formatter; 37 | } 38 | 39 | /// 40 | public Action OutputFunction { get; init; } = Console.Write; 41 | 42 | /// 43 | public void Output(NineNineTableData item) 44 | { 45 | item = item ?? throw new ArgumentNullException(nameof(item)); 46 | 47 | if (this.lastMultiplicand != 0 && this.lastMultiplicand != item.Multiplicand) 48 | { 49 | this.OutputFunction(Environment.NewLine); 50 | } 51 | 52 | this.lastMultiplicand = item.Multiplicand; 53 | this.OutputFunction(this.formatter(item)); 54 | this.OutputFunction(Separator); 55 | } 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /rank.md: -------------------------------------------------------------------------------- 1 | | index | user | size | 2 | |:-----:|:----------:|:---------:| 3 | | 1 | Hyc | 25 Bytes | 4 | | 2 | DavidWang19 | 34 Bytes | 5 | | 3 | lhhxxxxx | 35 Bytes | 6 | | 4 | horror-proton | 39 Bytes | 7 | | 5 | uye | 39 Bytes | 8 | | 6 | Ykong | 40 Bytes | 9 | | 7 | tursom | 52 Bytes | 10 | | 8 | otakuma | 53 Bytes | 11 | | 9 | zsqw123 | 57 Bytes | 12 | | 10 | dantmnf | 60 Bytes | 13 | | 11 | guigui | 62 Bytes | 14 | | 12 | mizu-bai | 64 Bytes | 15 | | 13 | duskmelon | 65 Bytes | 16 | | 14 | bakashigure | 66 Bytes | 17 | | 15 | 鼹鼠 | 69 Bytes | 18 | | 16 | FutabaRio | 70 Bytes | 19 | | 17 | XiaoMiku01 | 71 Bytes | 20 | | 18 | cnachen | 71 Bytes | 21 | | 19 | 玩水 | 71 Bytes | 22 | | 20 | abai | 72 Bytes | 23 | | 21 | jcjrobert | 72 Bytes | 24 | | 22 | 奶油面包拳 | 74 Bytes | 25 | | 23 | 鬼才 | 75 Bytes | 26 | | 24 | 谦虚 | 77 Bytes | 27 | | 25 | Yaossg | 78 Bytes | 28 | | 26 | HChenZi | 79 Bytes | 29 | | 27 | lawrenceli | 79 Bytes | 30 | | 28 | Ns2Kracy | 82 Bytes | 31 | | 29 | dragove | 85 Bytes | 32 | | 30 | Alisa | 91 Bytes | 33 | | 31 | 帝宝 | 91 Bytes | 34 | | 32 | fumiama | 92 Bytes | 35 | | 33 | GarfieldTheOldCat | 98 Bytes | 36 | | 34 | HikawaRin | 99 Bytes | 37 | | 35 | 酱香大冰糕 | 99 Bytes | 38 | | 36 | 知秋 | 103 Bytes | 39 | | 37 | vitex | 104 Bytes | 40 | | 38 | 车前子 | 104 Bytes | 41 | | 39 | blueskybone | 106 Bytes | 42 | | 40 | soybean2 | 107 Bytes | 43 | | 41 | cglcv | 109 Bytes | 44 | | 42 | gyro永不抽风 | 110 Bytes | 45 | | 43 | kokic | 110 Bytes | 46 | | 44 | mr_cino | 114 Bytes | 47 | | 45 | BiDuang | 115 Bytes | 48 | | 46 | XiaoX | 115 Bytes | 49 | | 47 | Konoha | 120 Bytes | 50 | | 48 | 煖風遲來 | 126 Bytes | 51 | | 49 | bigonion | 129 Bytes | 52 | | 50 | cola | 136 Bytes | 53 | | 51 | 萱 | 137 Bytes | 54 | | 52 | wniko | 140 Bytes | 55 | | 53 | FuAon | 162 Bytes | 56 | | 54 | javilak | 192 Bytes | 57 | | 55 | 麦子 | 196 Bytes | 58 | | 56 | StupidBh | 216 Bytes | 59 | | 57 | Helloworld | 239 Bytes | 60 | | 58 | 谓道之求 | 268 Bytes | 61 | | 59 | mnixry | 272 Bytes | 62 | | 60 | src | 286 Bytes | 63 | | 61 | mizusato | 293 Bytes | 64 | | 62 | 雅威 | 295 Bytes | 65 | | 63 | d3ara1n | 404 Bytes | 66 | | 64 | 哥斯拉 | 570 Bytes | 67 | | 65 | dzydoom | 578 Bytes | 68 | | 66 | 一只大鸽子 | 3419 Bytes | 69 | | 67 | HisAtri | 3689 Bytes | 70 | | 68 | Jiang-Red | 4287 Bytes | 71 | | 69 | Luorenmu | 11497 Bytes | 72 | | 70 | foxwhite25 | Infinity Bytes | 73 | -------------------------------------------------------------------------------- /HisAtri/CN.py: -------------------------------------------------------------------------------- 1 | def c_add(Reimu, Marisa): 2 | NTR必死 = str(Reimu) 3 | 纯爱党必胜 = str(Marisa) 4 | 5 | Reimu_ご主人様バカな = [int(誰でも大好き) for 誰でも大好き in NTR必死] 6 | Marisa_ご主人様バカな = [int(誰でも大好き) for 誰でも大好き in 纯爱党必胜] 7 | 8 | result = [] 9 | 10 | 蕾米莉亚_威严满满_斯卡雷特_抱头蹲防 = 0 11 | 12 | while len(Reimu_ご主人様バカな) > 0 or len(Marisa_ご主人様バカな) > 0: 13 | if len(Reimu_ご主人様バカな) > 0: 14 | 晓美焰魔万受无疆 = Reimu_ご主人様バカな.pop() 15 | else: 16 | 晓美焰魔万受无疆 = 0 17 | if len(Marisa_ご主人様バカな) > 0: 18 | 鹿目圆神攻德无量 = Marisa_ご主人様バカな.pop() 19 | else: 20 | 鹿目圆神攻德无量 = 1 21 | 鹿目圆神攻德无量 -= 1 22 | 23 | 即使我死了_被钉在棺材里_也要用腐朽的声音喊出_冬马和纱是小三 = 晓美焰魔万受无疆 + 鹿目圆神攻德无量 + 蕾米莉亚_威严满满_斯卡雷特_抱头蹲防 24 | 25 | if 即使我死了_被钉在棺材里_也要用腐朽的声音喊出_冬马和纱是小三 >= 10: 26 | 蕾米莉亚_威严满满_斯卡雷特_抱头蹲防 = 1 27 | 即使我死了_被钉在棺材里_也要用腐朽的声音喊出_冬马和纱是小三 -= 10 28 | else: 29 | 蕾米莉亚_威严满满_斯卡雷特_抱头蹲防 = 0 30 | 31 | result.insert(0, 即使我死了_被钉在棺材里_也要用腐朽的声音喊出_冬马和纱是小三) 32 | 33 | if 蕾米莉亚_威严满满_斯卡雷特_抱头蹲防 == 1: 34 | result.insert(0, 蕾米莉亚_威严满满_斯卡雷特_抱头蹲防) 35 | 36 | result_str = ''.join([str(d) for d in result]) 37 | result_int = int(result_str) 38 | return result_int 39 | 40 | def c_multiply(北部玄驹, 我老婆): 41 | if 我老婆 == 0: 42 | 北部玄驹我老婆 = 0 43 | return 北部玄驹我老婆 44 | 45 | else: 46 | 北部玄驹我老婆 = 北部玄驹 47 | for i in range(我老婆-1): 48 | 北部玄驹我老婆 = c_add(北部玄驹,北部玄驹我老婆) 49 | 50 | return 北部玄驹我老婆 51 | 52 | def c_arraynine(): 53 | 玛丽 = [] 54 | 群rbq = 0 55 | while(群rbq <= 8): 56 | 群rbq = c_add(群rbq, 1) 57 | 玛丽.append(群rbq) 58 | return 玛丽 59 | 60 | 任何邪恶终将绳之以法 = ["零","一","二","三","四","五","六","七","八","九","十"] 61 | def 放弃理想吧(忘掉种过的花,你正在要搬家): 62 | if(忘掉种过的花<10): 63 | return "得"+你正在要搬家[忘掉种过的花] 64 | 别在看_尘封的喜帖 = 忘掉种过的花//10 65 | 重新的出发 = 忘掉种过的花%10 66 | if(重新的出发 == 0): 67 | return 你正在要搬家[别在看_尘封的喜帖]+"十" 68 | else: 69 | return 你正在要搬家[别在看_尘封的喜帖]+"十"+你正在要搬家[重新的出发] 70 | 71 | 肯德基疯狂星期四V我50谢谢 = c_arraynine() 72 | for 青春猪头大公鸡会不会摧毁兔女郎学姐小猫咪 in 肯德基疯狂星期四V我50谢谢: 73 | 私はとてもばかです = 1 74 | while 私はとてもばかです <= 青春猪头大公鸡会不会摧毁兔女郎学姐小猫咪: 75 | 东方绯想天 = c_multiply(青春猪头大公鸡会不会摧毁兔女郎学姐小猫咪,私はとてもばかです) 76 | print(f'{任何邪恶终将绳之以法[私はとてもばかです]}{任何邪恶终将绳之以法[青春猪头大公鸡会不会摧毁兔女郎学姐小猫咪]}{放弃理想吧(东方绯想天,任何邪恶终将绳之以法)} ', end='\t') 77 | 私はとてもばかです = c_add(私はとてもばかです,1) 78 | print() -------------------------------------------------------------------------------- /HikawaRin/csharp/errorlog: -------------------------------------------------------------------------------- 1 | Microsoft (R) Build Engine version 17.0.1+b177f8fa7 for .NET 2 | Copyright (C) Microsoft Corporation. All rights reserved. 3 | 4 | /tmp/MSBuildTemphikawa/tmpaafcc380d03c4f5692249352b3c77bb6.tmp(36,13): warning CS0162: Unreachable code detected [/home/hikawa/99/NineNineTable/HikawaRin/csharp/99.noproj] 5 | /home/hikawa/99/NineNineTable/HikawaRin/csharp/99.noproj(1,339): error : 1*1=1 6 | /home/hikawa/99/NineNineTable/HikawaRin/csharp/99.noproj(1,339): error : 2*1=2 2*2=4 7 | /home/hikawa/99/NineNineTable/HikawaRin/csharp/99.noproj(1,339): error : 3*1=3 3*2=6 3*3=9 8 | /home/hikawa/99/NineNineTable/HikawaRin/csharp/99.noproj(1,339): error : 4*1=4 4*2=8 4*3=12 4*4=16 9 | /home/hikawa/99/NineNineTable/HikawaRin/csharp/99.noproj(1,339): error : 5*1=5 5*2=10 5*3=15 5*4=20 5*5=25 10 | /home/hikawa/99/NineNineTable/HikawaRin/csharp/99.noproj(1,339): error : 6*1=6 6*2=12 6*3=18 6*4=24 6*5=30 6*6=36 11 | /home/hikawa/99/NineNineTable/HikawaRin/csharp/99.noproj(1,339): error : 7*1=7 7*2=14 7*3=21 7*4=28 7*5=35 7*6=42 7*7=49 12 | /home/hikawa/99/NineNineTable/HikawaRin/csharp/99.noproj(1,339): error : 8*1=8 8*2=16 8*3=24 8*4=32 8*5=40 8*6=48 8*7=56 8*8=64 13 | /home/hikawa/99/NineNineTable/HikawaRin/csharp/99.noproj(1,339): error : 9*1=9 9*2=18 9*3=27 9*4=36 9*5=45 9*6=54 9*7=63 9*8=72 9*9=81 14 | 15 | Build succeeded. 16 | 17 | /tmp/MSBuildTemphikawa/tmpaafcc380d03c4f5692249352b3c77bb6.tmp(36,13): warning CS0162: Unreachable code detected [/home/hikawa/99/NineNineTable/HikawaRin/csharp/99.noproj] 18 | /home/hikawa/99/NineNineTable/HikawaRin/csharp/99.noproj(1,339): error : 1*1=1 19 | /home/hikawa/99/NineNineTable/HikawaRin/csharp/99.noproj(1,339): error : 2*1=2 2*2=4 20 | /home/hikawa/99/NineNineTable/HikawaRin/csharp/99.noproj(1,339): error : 3*1=3 3*2=6 3*3=9 21 | /home/hikawa/99/NineNineTable/HikawaRin/csharp/99.noproj(1,339): error : 4*1=4 4*2=8 4*3=12 4*4=16 22 | /home/hikawa/99/NineNineTable/HikawaRin/csharp/99.noproj(1,339): error : 5*1=5 5*2=10 5*3=15 5*4=20 5*5=25 23 | /home/hikawa/99/NineNineTable/HikawaRin/csharp/99.noproj(1,339): error : 6*1=6 6*2=12 6*3=18 6*4=24 6*5=30 6*6=36 24 | /home/hikawa/99/NineNineTable/HikawaRin/csharp/99.noproj(1,339): error : 7*1=7 7*2=14 7*3=21 7*4=28 7*5=35 7*6=42 7*7=49 25 | /home/hikawa/99/NineNineTable/HikawaRin/csharp/99.noproj(1,339): error : 8*1=8 8*2=16 8*3=24 8*4=32 8*5=40 8*6=48 8*7=56 8*8=64 26 | /home/hikawa/99/NineNineTable/HikawaRin/csharp/99.noproj(1,339): error : 9*1=9 9*2=18 9*3=27 9*4=36 9*5=45 9*6=54 9*7=63 9*8=72 9*9=81 27 | 1 Warning(s) 28 | 9 Error(s) 29 | 30 | Time Elapsed 00:00:00.84 31 | -------------------------------------------------------------------------------- /Helloworld/NineNineTable/NineNineTable.Test/OutputFormatter/NineNineTableConsoleOutputFormatterTest.cs: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Helloworld. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | namespace NineNineTable.Test.OutputFormatter 7 | { 8 | using FluentAssertions; 9 | using Microsoft.VisualStudio.TestTools.UnitTesting; 10 | using NineNineTable.OutputFormatter; 11 | 12 | /// 13 | /// Tests . 14 | /// 15 | [TestClass] 16 | public class NineNineTableConsoleOutputFormatterTest 17 | { 18 | /// 19 | /// Tests . 20 | /// 21 | [TestMethod] 22 | public void TestOutput() 23 | { 24 | var output = string.Empty; 25 | 26 | var formatter = new NineNineTableConsoleOutputFormatter(data => $"{data.Multiplicand}*{data.Multiplier}={data.Multiplicand * data.Multiplier}") 27 | { 28 | OutputFunction = value => output += value, 29 | }; 30 | 31 | formatter.Output(new NineNineTableData() 32 | { 33 | Multiplicand = 1, 34 | Multiplier = 1, 35 | }); 36 | 37 | output.Should().Be("1*1=1 "); 38 | } 39 | 40 | /// 41 | /// Tests with multi-line outputs. 42 | /// 43 | [TestMethod] 44 | public void TestOutputMultiline() 45 | { 46 | var output = string.Empty; 47 | 48 | var formatter = new NineNineTableConsoleOutputFormatter(data => $"{data.Multiplicand}*{data.Multiplier}={data.Multiplicand * data.Multiplier}") 49 | { 50 | OutputFunction = value => output += value, 51 | }; 52 | 53 | for (int i = 0; i < 9; i++) 54 | { 55 | formatter.Output(new NineNineTableData() 56 | { 57 | Multiplicand = i + 1, 58 | Multiplier = 1, 59 | }); 60 | } 61 | 62 | output.Should().Contain(Environment.NewLine); 63 | } 64 | 65 | /// 66 | /// Tests with null value. 67 | /// 68 | [TestMethod] 69 | public void TestOutputNull() 70 | { 71 | var formatter = new NineNineTableConsoleOutputFormatter(data => string.Empty) 72 | { 73 | OutputFunction = _ => { }, 74 | }; 75 | 76 | Action a = () => formatter.Output(default!); 77 | a.Should().Throw(); 78 | } 79 | } 80 | } 81 | -------------------------------------------------------------------------------- /一只大鸽子/big.glsl: -------------------------------------------------------------------------------- 1 | //sdf来自 https://www.shadertoy.com/view/XtsGRl 可以去https://www.shadertoy.com/new 运行 2 | #define CHAR_SIZE vec2(3, 7) 3 | #define CHAR_SPACING vec2(4, 8) 4 | #define STRWIDTH(c) (c * CHAR_SPACING.x) 5 | #define STRHEIGHT(c) (c * CHAR_SPACING.y) 6 | float ch_sp = 0.0; float ch_a = 712557.0; float ch_b = 1760622.0; float ch_c = 706858.0; float ch_d = 1760110.0; float ch_e = 2018607.0; float ch_f = 2018596.0; float ch_g = 706922.0; float ch_h = 1498989.0; float ch_i = 1909911.0; float ch_j = 1872746.0; float ch_k = 1498477.0; float ch_l = 1198375.0; float ch_m = 1571693.0; float ch_n = 1760109.0; float ch_o = 711530.0; float ch_p = 711972.0; float ch_q = 711675.0; float ch_r = 1760621.0; float ch_s = 2018927.0; float ch_t = 1909906.0; float ch_u = 1497963.0; float ch_v = 1497938.0; float ch_w = 1498109.0; float ch_x = 1496429.0; float ch_y = 1496210.0; float ch_z = 2004271.0; float ch_1 = 730263.0; float ch_2 = 693543.0; float ch_3 = 693354.0; float ch_4 = 1496649.0; float ch_5 = 1985614.0; float ch_6 = 707946.0; float ch_7 = 1873042.0; float ch_8 = 709994.0; float ch_9 = 710250.0; float ch_0 = 711530.0; float ch_per = 2.0; float ch_que = 693378.0; float ch_exc = 599170.0; float ch_com = 10.0; float ch_scl = 65556.0; float ch_col = 65552.0; float ch_usc = 7.0; float ch_crs = 11904.0; float ch_dsh = 3584.0; float ch_ast = 21824.0; float ch_fsl = 304292.0; float ch_bsl = 1189001.0; float ch_lpr = 346385.0; float ch_rpr = 1118804.0; float ch_lba = 862355.0; float ch_rpa = 1647254.0; vec2 res = vec2(0); vec2 print_pos = vec2(2,2); float extract_bit(float n, float b) { return floor(mod(floor(n / pow(2.0,floor(b))),2.0)); } float sprite(float spr, vec2 size, vec2 uv) { uv = floor(uv); float bit = (size.x-uv.x-1.0) + uv.y * size.x; bool bounds = all(greaterThanEqual(uv,vec2(0))); bounds = bounds && all(lessThan(uv,size)); return bounds ? extract_bit(spr, bit) : 0.0; } float get_digit(float d) { d = floor(d); if(d == 0.0) return ch_0; if(d == 1.0) return ch_1; if(d == 2.0) return ch_2; if(d == 3.0) return ch_3; if(d == 4.0) return ch_4; if(d == 5.0) return ch_5; if(d == 6.0) return ch_6; if(d == 7.0) return ch_7; if(d == 8.0) return ch_8; if(d == 9.0) return ch_9; return 0.0; } float print_number(float number,vec2 pos, vec2 uv) { vec2 dec_pos = pos; float result = 0.0; for(int i = 3;i >= 0;i--) { float clip = float(abs(number) > pow(10.0, float(i)) || i == 0); float digit = mod(number / pow(10.0, float(i)),10.0); result += sprite(get_digit(digit),CHAR_SIZE, uv - dec_pos) * clip; dec_pos.x += CHAR_SPACING.x * clip; } return result; } float char(float ch, vec2 uv) { float px = sprite(ch, CHAR_SIZE, uv - print_pos); print_pos.x += CHAR_SPACING.x; return px; } void mainImage( out vec4 fragColor, in vec2 fragCoord ) { res = iResolution.xy / 1.5; vec2 uv = fragCoord.xy / 1.5; uv = floor(uv); float col = 0.0; print_pos = vec2(res.x/2.0 - STRWIDTH(17.0)/2.0,res.y/2.0 - STRHEIGHT(1.0)/2.0); for(int i=1;i<=9;i++){ for(int l=1;l<=i;l++){ print_pos = vec2(float((l-1)*58)+10.,200.-float(i*10)); col += print_number(float(l),print_pos,uv); print_pos.x += 10.; col += char(ch_x,uv); print_pos.x += 10.; col += print_number(float(i),print_pos,uv); print_pos.y += 2.; print_pos.x += 10.; col += char(ch_usc,uv); print_pos.y += 2.; print_pos.x -= 4.; col += char(ch_usc,uv); print_pos.x += 2.; print_pos.y -= 4.; col += print_number(float(i*l),print_pos,uv); } } fragColor = vec4(vec3(col), 1.0); } 7 | -------------------------------------------------------------------------------- /Jiang-Red/main.bf: -------------------------------------------------------------------------------- 1 | +++++++[->+++++++<]>.-------.+++++++.<+++[->+++<]>+++.<+++[->---<]>---.<++++++[->------<]>.---.<++++++[->++++++<]>+++.-------.++++++++.<+++[->+++<]>++.<+++[->---<]>--.<++++[->----<]>--.<++++[->++++<]>++.--------.++++++++.<+++[->+++<]>++.---------.<++++++[->------<]>---.---.<++++++[->++++++<]>+++.-------.+++++++++.<+++[->+++<]>+.<+++[->---<]>-.<++++[->----<]>---.<++++[->++++<]>++.--------.+++++++++.<+++[->+++<]>+.-------.<++++[->----<]>------.<++++[->++++<]>+++.---------.+++++++++.<+++[->+++<]>+.----.<++++++[->------<]>--------.---.<++++++[->++++++<]>+++.-------.<+++[->+++<]>+.+++++++++.---------.<++++[->----<]>----.<++++[->++++<]>++.--------.<+++[->+++<]>+.+++++++++.-----.<++++[->----<]>--------.<++++[->++++<]>+++.---------.<+++[->+++<]>+.+++++++++.<+++[->---<]>---.+.<++++[->----<]>--.<++++[->++++<]>++++.<+++[->---<]>-.<+++[->+++<]>+.+++++++++.<+++[->---<]>---.+++++.<++++++[->------<]>-----.---.<++++++[->++++++<]>+++.-------.<+++[->+++<]>++.++++++++.--------.<++++[->----<]>-----.<++++[->++++<]>++.--------.<+++[->+++<]>++.++++++++.<+++[->---<]>---.-.<++++[->----<]>.<++++[->++++<]>+++.---------.<+++[->+++<]>++.++++++++.<+++[->---<]>---.++++.<++++[->----<]>-----.<++++[->++++<]>++++.<+++[->---<]>-.<+++[->+++<]>++.++++++++.<+++[->---<]>--.--.<++++[->----<]>.<++++[->++++<]>+++++.<+++[->---<]>--.<+++[->+++<]>++.++++++++.<+++[->---<]>--.+++.<++++++[->------<]>----.---.<++++++[->++++++<]>+++.-------.<+++[->+++<]>+++.+++++++.-------.<++++[->----<]>------.<++++[->++++<]>++.--------.<+++[->+++<]>+++.+++++++.<+++[->---<]>---.+.<++++[->----<]>--.<++++[->++++<]>+++.---------.<+++[->+++<]>+++.+++++++.<+++[->---<]>---.+++++++.<++++[->----<]>--------.<++++[->++++<]>++++.<+++[->---<]>-.<+++[->+++<]>+++.+++++++.<+++[->---<]>--.++.<++++[->----<]>----.<++++[->++++<]>+++++.<+++[->---<]>--.<+++[->+++<]>+++.+++++++.<+++[->---<]>-.---.<++++[->----<]>.<++++[->++++<]>++++++.<+++[->---<]>---.<+++[->+++<]>+++.+++++++.<+++[->---<]>-.+++.<++++++[->------<]>-----.---.<++++++[->++++++<]>+++.-------.<+++[->+++<]>++++.++++++.------.<++++[->----<]>-------.<++++[->++++<]>++.--------.<+++[->+++<]>++++.++++++.<+++[->---<]>---.+++.<++++[->----<]>----.<++++[->++++<]>+++.---------.<+++[->+++<]>++++.++++++.<+++[->---<]>--.-.<++++[->----<]>-.<++++[->++++<]>++++.<+++[->---<]>-.<+++[->+++<]>++++.++++++.<+++[->---<]>--.++++++.<++++[->----<]>--------.<++++[->++++<]>+++++.<+++[->---<]>--.<+++[->+++<]>++++.++++++.<+++[->---<]>-.++.<++++[->----<]>-----.<++++[->++++<]>++++++.<+++[->---<]>---.<+++[->+++<]>++++.++++++.---------.--.<++++[->----<]>--.<++++[->++++<]>+++++++.<+++[->---<]>----.<+++[->+++<]>++++.++++++.---------.+++++.<++++++[->------<]>--------.---.<++++++[->++++++<]>+++.-------.<+++[->+++<]>+++++.+++++.-----.<++++[->----<]>--------.<++++[->++++<]>++.--------.<+++[->+++<]>+++++.+++++.<+++[->---<]>---.+++++.<++++[->----<]>------.<++++[->++++<]>+++.---------.<+++[->+++<]>+++++.+++++.<+++[->---<]>--.++.<++++[->----<]>----.<++++[->++++<]>++++.<+++[->---<]>-.<+++[->+++<]>+++++.+++++.<+++[->---<]>-.-.<++++[->----<]>--.<++++[->++++<]>+++++.<+++[->---<]>--.<+++[->+++<]>+++++.+++++.---------.----.<++++[->----<]>.<++++[->++++<]>++++++.<+++[->---<]>---.<+++[->+++<]>+++++.+++++.---------.++++.<++++[->----<]>--------.<++++[->++++<]>+++++++.<+++[->---<]>----.<+++[->+++<]>+++++.+++++.--------.+.<++++[->----<]>------.<++++[->++++<]>++++++++.<+++[->---<]>-----.<+++[->+++<]>+++++.+++++.-------.--.<++++++[->------<]>---.---.<++++++[->++++++<]>+++.-------.<+++[->+++<]>++++++.++++.----.<+++++[->-----<]>.<++++[->++++<]>++.--------.<+++[->+++<]>++++++.++++.<+++[->---<]>---.+++++++.<++++[->----<]>--------.<++++[->++++<]>+++.---------.<+++[->+++<]>++++++.++++.<+++[->---<]>--.+++++.<++++[->----<]>-------.<++++[->++++<]>++++.<+++[->---<]>-.<+++[->+++<]>++++++.++++.<+++[->---<]>-.+++.<++++[->----<]>------.<++++[->++++<]>+++++.<+++[->---<]>--.<+++[->+++<]>++++++.++++.---------.+.<++++[->----<]>-----.<++++[->++++<]>++++++.<+++[->---<]>---.<+++[->+++<]>++++++.++++.--------.-.<++++[->----<]>----.<++++[->++++<]>+++++++.<+++[->---<]>----.<+++[->+++<]>++++++.++++.-------.---.<++++[->----<]>---.<++++[->++++<]>++++++++.<+++[->---<]>-----.<+++[->+++<]>++++++.++++.------.-----.<++++[->----<]>--.<+++++[->+++++<]>.<+++[->---<]>------.<+++[->+++<]>++++++.++++.-----.-------.<++++[->----<]>-.< -------------------------------------------------------------------------------- /HisAtri/九九表.py: -------------------------------------------------------------------------------- 1 | #进制转换 2 | def bina(num): 3 | if num == 0: 4 | return '0' 5 | binary = '' 6 | while num > 0: 7 | remainder = num % 2 8 | binary = str(remainder) + binary 9 | num //= 2 10 | return binary 11 | 12 | #字符串长度 13 | def strlen(s): 14 | count = 0 15 | for char in s: 16 | count += 1 17 | return count 18 | 19 | #实现xor 20 | def xora(num1, num2): 21 | bin_num1 = bina(num1) 22 | bin_num2 = bina(num2) 23 | max_len = max(strlen(bin_num1), strlen(bin_num2)) 24 | bin_num1 = bin_num1.rjust(max_len, '0') 25 | bin_num2 = bin_num2.rjust(max_len, '0') 26 | result = ''.join(str(int(a) ^ int(b)) for a, b in zip(bin_num1, bin_num2)) 27 | return int(result, 2) 28 | 29 | #实现and 30 | def anda(num1, num2): 31 | bin_num1 = bina(num1) 32 | bin_num2 = bina(num2) 33 | max_len = max(strlen(bin_num1), strlen(bin_num2)) 34 | bin_num1 = bin_num1.rjust(max_len, '0') 35 | bin_num2 = bin_num2.rjust(max_len, '0') 36 | result = ''.join(str(int(a) & int(b)) for a, b in zip(bin_num1, bin_num2)) 37 | return int(result, 2) 38 | 39 | #实现加法 40 | def adda(巴, 麻美): 41 | if 麻美 == 0: 42 | return 巴 43 | else: 44 | 美树沙耶香 = xora(巴, 麻美) 45 | 是笨蛋 = (anda(巴, 麻美)) << 1 46 | return adda(美树沙耶香, 是笨蛋) 47 | 48 | #实现加法2 49 | def c_add(Reimu, Marisa): 50 | NTR必死 = str(Reimu) 51 | 纯爱党必胜 = str(Marisa) 52 | 53 | Reimu_ご主人様バカな = [int(誰でも大好き) for 誰でも大好き in NTR必死] 54 | Marisa_ご主人様バカな = [int(誰でも大好き) for 誰でも大好き in 纯爱党必胜] 55 | 56 | result = [] 57 | 58 | 蕾米莉亚_威严满满_斯卡雷特_抱头蹲防 = 0 59 | 60 | while strlen(Reimu_ご主人様バカな) > 0 or strlen(Marisa_ご主人様バカな) > 0: 61 | if strlen(Reimu_ご主人様バカな) > 0: 62 | 晓美焰魔万受无疆 = Reimu_ご主人様バカな.pop() 63 | else: 64 | 晓美焰魔万受无疆 = 0 65 | if strlen(Marisa_ご主人様バカな) > 0: 66 | 鹿目圆神攻德无量 = Marisa_ご主人様バカな.pop() 67 | else: 68 | 鹿目圆神攻德无量 = 1 69 | 鹿目圆神攻德无量 -= 1 70 | 71 | 和我签订契约成为魔法少女吧 = adda(晓美焰魔万受无疆, 鹿目圆神攻德无量) 72 | 即使我死了_被钉在棺材里_也要用腐朽的声音喊出_冬马和纱是小三 = adda(和我签订契约成为魔法少女吧, 蕾米莉亚_威严满满_斯卡雷特_抱头蹲防) 73 | 74 | if 即使我死了_被钉在棺材里_也要用腐朽的声音喊出_冬马和纱是小三 >= 10: 75 | 蕾米莉亚_威严满满_斯卡雷特_抱头蹲防 = 1 76 | 即使我死了_被钉在棺材里_也要用腐朽的声音喊出_冬马和纱是小三 -= 10 77 | else: 78 | 蕾米莉亚_威严满满_斯卡雷特_抱头蹲防 = 0 79 | 80 | result.insert(0, 即使我死了_被钉在棺材里_也要用腐朽的声音喊出_冬马和纱是小三) 81 | 82 | if 蕾米莉亚_威严满满_斯卡雷特_抱头蹲防 == 1: 83 | result.insert(0, 蕾米莉亚_威严满满_斯卡雷特_抱头蹲防) 84 | 85 | result_str = ''.join([str(d) for d in result]) 86 | result_int = int(result_str) 87 | return result_int 88 | 89 | #实现乘法 90 | def c_multiply(北部玄驹, 我老婆): 91 | if 我老婆 == 0: 92 | 北部玄驹我老婆 = 0 93 | return 北部玄驹我老婆 94 | 95 | else: 96 | 北部玄驹我老婆 = 北部玄驹 97 | for i in range(我老婆-1): 98 | 北部玄驹我老婆 = c_add(北部玄驹,北部玄驹我老婆) 99 | 100 | return 北部玄驹我老婆 101 | 102 | #创建数组 103 | def c_arraynine(): 104 | 你说的对但是原神是由米哈游自主研发的一款全新开放世界冒险游戏游戏发生在一个被称作提瓦特的幻想世界在这里被神选中的人将被授予神之眼导引元素之力你将扮演一位名为旅行者的神秘角色在自由的旅行中邂逅性格各异能力独特的同伴们和他们一起击败强敌找回失散的亲人同时逐步发掘原神的真相 = [] 105 | 晕女士们先生们大家好今天我很荣幸作为一个青藏高原的孩蜇能来到黏合国讲我喝动物朋友们的故射 = 0 106 | while(晕女士们先生们大家好今天我很荣幸作为一个青藏高原的孩蜇能来到黏合国讲我喝动物朋友们的故射 <= 8): 107 | 晕女士们先生们大家好今天我很荣幸作为一个青藏高原的孩蜇能来到黏合国讲我喝动物朋友们的故射 = c_add(晕女士们先生们大家好今天我很荣幸作为一个青藏高原的孩蜇能来到黏合国讲我喝动物朋友们的故射, 1) 108 | 你说的对但是原神是由米哈游自主研发的一款全新开放世界冒险游戏游戏发生在一个被称作提瓦特的幻想世界在这里被神选中的人将被授予神之眼导引元素之力你将扮演一位名为旅行者的神秘角色在自由的旅行中邂逅性格各异能力独特的同伴们和他们一起击败强敌找回失散的亲人同时逐步发掘原神的真相.append(晕女士们先生们大家好今天我很荣幸作为一个青藏高原的孩蜇能来到黏合国讲我喝动物朋友们的故射) 109 | return 你说的对但是原神是由米哈游自主研发的一款全新开放世界冒险游戏游戏发生在一个被称作提瓦特的幻想世界在这里被神选中的人将被授予神之眼导引元素之力你将扮演一位名为旅行者的神秘角色在自由的旅行中邂逅性格各异能力独特的同伴们和他们一起击败强敌找回失散的亲人同时逐步发掘原神的真相 110 | 111 | 肯德基疯狂星期四V我50谢谢 = c_arraynine() 112 | for 青春猪头大公鸡会不会摧毁兔女郎学姐小猫咪 in 肯德基疯狂星期四V我50谢谢: 113 | 私はとてもばかです = 1 114 | while (私はとてもばかです <= 青春猪头大公鸡会不会摧毁兔女郎学姐小猫咪): 115 | print(f'{青春猪头大公鸡会不会摧毁兔女郎学姐小猫咪}x{私はとてもばかです}={c_multiply(青春猪头大公鸡会不会摧毁兔女郎学姐小猫咪,私はとてもばかです)}', end='\t') 116 | 私はとてもばかです = c_add(私はとてもばかです,1) 117 | print() -------------------------------------------------------------------------------- /Helloworld/NineNineTable/.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | ## 4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore 5 | 6 | # User-specific files 7 | *.rsuser 8 | *.suo 9 | *.user 10 | *.userosscache 11 | *.sln.docstates 12 | 13 | # User-specific files (MonoDevelop/Xamarin Studio) 14 | *.userprefs 15 | 16 | # Mono auto generated files 17 | mono_crash.* 18 | 19 | # Build results 20 | [Dd]ebug/ 21 | [Dd]ebugPublic/ 22 | [Rr]elease/ 23 | [Rr]eleases/ 24 | x64/ 25 | x86/ 26 | [Aa][Rr][Mm]/ 27 | [Aa][Rr][Mm]64/ 28 | bld/ 29 | [Bb]in/ 30 | [Oo]bj/ 31 | [Ll]og/ 32 | [Ll]ogs/ 33 | 34 | # Visual Studio 2015/2017 cache/options directory 35 | .vs/ 36 | # Uncomment if you have tasks that create the project's static files in wwwroot 37 | #wwwroot/ 38 | 39 | # Visual Studio 2017 auto generated files 40 | Generated\ Files/ 41 | 42 | # MSTest test Results 43 | [Tt]est[Rr]esult*/ 44 | [Bb]uild[Ll]og.* 45 | 46 | # NUnit 47 | *.VisualState.xml 48 | TestResult.xml 49 | nunit-*.xml 50 | 51 | # Build Results of an ATL Project 52 | [Dd]ebugPS/ 53 | [Rr]eleasePS/ 54 | dlldata.c 55 | 56 | # Benchmark Results 57 | BenchmarkDotNet.Artifacts/ 58 | 59 | # .NET Core 60 | project.lock.json 61 | project.fragment.lock.json 62 | artifacts/ 63 | 64 | # StyleCop 65 | StyleCopReport.xml 66 | 67 | # Files built by Visual Studio 68 | *_i.c 69 | *_p.c 70 | *_h.h 71 | *.ilk 72 | *.meta 73 | *.obj 74 | *.iobj 75 | *.pch 76 | *.pdb 77 | *.ipdb 78 | *.pgc 79 | *.pgd 80 | *.rsp 81 | *.sbr 82 | *.tlb 83 | *.tli 84 | *.tlh 85 | *.tmp 86 | *.tmp_proj 87 | *_wpftmp.csproj 88 | *.log 89 | *.vspscc 90 | *.vssscc 91 | .builds 92 | *.pidb 93 | *.svclog 94 | *.scc 95 | 96 | # Chutzpah Test files 97 | _Chutzpah* 98 | 99 | # Visual C++ cache files 100 | ipch/ 101 | *.aps 102 | *.ncb 103 | *.opendb 104 | *.opensdf 105 | *.sdf 106 | *.cachefile 107 | *.VC.db 108 | *.VC.VC.opendb 109 | 110 | # Visual Studio profiler 111 | *.psess 112 | *.vsp 113 | *.vspx 114 | *.sap 115 | 116 | # Visual Studio Trace Files 117 | *.e2e 118 | 119 | # TFS 2012 Local Workspace 120 | $tf/ 121 | 122 | # Guidance Automation Toolkit 123 | *.gpState 124 | 125 | # ReSharper is a .NET coding add-in 126 | _ReSharper*/ 127 | *.[Rr]e[Ss]harper 128 | *.DotSettings.user 129 | 130 | # TeamCity is a build add-in 131 | _TeamCity* 132 | 133 | # DotCover is a Code Coverage Tool 134 | *.dotCover 135 | 136 | # AxoCover is a Code Coverage Tool 137 | .axoCover/* 138 | !.axoCover/settings.json 139 | 140 | # Visual Studio code coverage results 141 | *.coverage 142 | *.coveragexml 143 | 144 | # NCrunch 145 | _NCrunch_* 146 | .*crunch*.local.xml 147 | nCrunchTemp_* 148 | 149 | # MightyMoose 150 | *.mm.* 151 | AutoTest.Net/ 152 | 153 | # Web workbench (sass) 154 | .sass-cache/ 155 | 156 | # Installshield output folder 157 | [Ee]xpress/ 158 | 159 | # DocProject is a documentation generator add-in 160 | DocProject/buildhelp/ 161 | DocProject/Help/*.HxT 162 | DocProject/Help/*.HxC 163 | DocProject/Help/*.hhc 164 | DocProject/Help/*.hhk 165 | DocProject/Help/*.hhp 166 | DocProject/Help/Html2 167 | DocProject/Help/html 168 | 169 | # Click-Once directory 170 | publish/ 171 | 172 | # Publish Web Output 173 | *.[Pp]ublish.xml 174 | *.azurePubxml 175 | # Note: Comment the next line if you want to checkin your web deploy settings, 176 | # but database connection strings (with potential passwords) will be unencrypted 177 | *.pubxml 178 | *.publishproj 179 | 180 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 181 | # checkin your Azure Web App publish settings, but sensitive information contained 182 | # in these scripts will be unencrypted 183 | PublishScripts/ 184 | 185 | # NuGet Packages 186 | *.nupkg 187 | # NuGet Symbol Packages 188 | *.snupkg 189 | # The packages folder can be ignored because of Package Restore 190 | **/[Pp]ackages/* 191 | # except build/, which is used as an MSBuild target. 192 | !**/[Pp]ackages/build/ 193 | # Uncomment if necessary however generally it will be regenerated when needed 194 | #!**/[Pp]ackages/repositories.config 195 | # NuGet v3's project.json files produces more ignorable files 196 | *.nuget.props 197 | *.nuget.targets 198 | 199 | # Microsoft Azure Build Output 200 | csx/ 201 | *.build.csdef 202 | 203 | # Microsoft Azure Emulator 204 | ecf/ 205 | rcf/ 206 | 207 | # Windows Store app package directories and files 208 | AppPackages/ 209 | BundleArtifacts/ 210 | Package.StoreAssociation.xml 211 | _pkginfo.txt 212 | *.appx 213 | *.appxbundle 214 | *.appxupload 215 | 216 | # Visual Studio cache files 217 | # files ending in .cache can be ignored 218 | *.[Cc]ache 219 | # but keep track of directories ending in .cache 220 | !?*.[Cc]ache/ 221 | 222 | # Others 223 | ClientBin/ 224 | ~$* 225 | *~ 226 | *.dbmdl 227 | *.dbproj.schemaview 228 | *.jfm 229 | *.pfx 230 | *.publishsettings 231 | orleans.codegen.cs 232 | 233 | # Including strong name files can present a security risk 234 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 235 | #*.snk 236 | 237 | # Since there are multiple workflows, uncomment next line to ignore bower_components 238 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 239 | #bower_components/ 240 | 241 | # RIA/Silverlight projects 242 | Generated_Code/ 243 | 244 | # Backup & report files from converting an old project file 245 | # to a newer Visual Studio version. Backup files are not needed, 246 | # because we have git ;-) 247 | _UpgradeReport_Files/ 248 | Backup*/ 249 | UpgradeLog*.XML 250 | UpgradeLog*.htm 251 | ServiceFabricBackup/ 252 | *.rptproj.bak 253 | 254 | # SQL Server files 255 | *.mdf 256 | *.ldf 257 | *.ndf 258 | 259 | # Business Intelligence projects 260 | *.rdl.data 261 | *.bim.layout 262 | *.bim_*.settings 263 | *.rptproj.rsuser 264 | *- [Bb]ackup.rdl 265 | *- [Bb]ackup ([0-9]).rdl 266 | *- [Bb]ackup ([0-9][0-9]).rdl 267 | 268 | # Microsoft Fakes 269 | FakesAssemblies/ 270 | 271 | # GhostDoc plugin setting file 272 | *.GhostDoc.xml 273 | 274 | # Node.js Tools for Visual Studio 275 | .ntvs_analysis.dat 276 | node_modules/ 277 | 278 | # Visual Studio 6 build log 279 | *.plg 280 | 281 | # Visual Studio 6 workspace options file 282 | *.opt 283 | 284 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 285 | *.vbw 286 | 287 | # Visual Studio LightSwitch build output 288 | **/*.HTMLClient/GeneratedArtifacts 289 | **/*.DesktopClient/GeneratedArtifacts 290 | **/*.DesktopClient/ModelManifest.xml 291 | **/*.Server/GeneratedArtifacts 292 | **/*.Server/ModelManifest.xml 293 | _Pvt_Extensions 294 | 295 | # Paket dependency manager 296 | .paket/paket.exe 297 | paket-files/ 298 | 299 | # FAKE - F# Make 300 | .fake/ 301 | 302 | # CodeRush personal settings 303 | .cr/personal 304 | 305 | # Python Tools for Visual Studio (PTVS) 306 | __pycache__/ 307 | *.pyc 308 | 309 | # Cake - Uncomment if you are using it 310 | # tools/** 311 | # !tools/packages.config 312 | 313 | # Tabs Studio 314 | *.tss 315 | 316 | # Telerik's JustMock configuration file 317 | *.jmconfig 318 | 319 | # BizTalk build output 320 | *.btp.cs 321 | *.btm.cs 322 | *.odx.cs 323 | *.xsd.cs 324 | 325 | # OpenCover UI analysis results 326 | OpenCover/ 327 | 328 | # Azure Stream Analytics local run output 329 | ASALocalRun/ 330 | 331 | # MSBuild Binary and Structured Log 332 | *.binlog 333 | 334 | # NVidia Nsight GPU debugger configuration file 335 | *.nvuser 336 | 337 | # MFractors (Xamarin productivity tool) working folder 338 | .mfractor/ 339 | 340 | # Local History for Visual Studio 341 | .localhistory/ 342 | 343 | # BeatPulse healthcheck temp database 344 | healthchecksdb 345 | 346 | # Backup folder for Package Reference Convert tool in Visual Studio 2017 347 | MigrationBackup/ 348 | 349 | # Ionide (cross platform F# VS Code tools) working folder 350 | .ionide/ 351 | -------------------------------------------------------------------------------- /Helloworld/JavaScript/NineNineTable.js: -------------------------------------------------------------------------------- 1 | ゚ω゚ノ= /`m´)ノ ~┻━┻ //*´∇`*/ ['_']; o=(゚ー゚) =_=3; c=(゚Θ゚) =(゚ー゚)-(゚ー゚); (゚Д゚) =(゚Θ゚)= (o^_^o)/ (o^_^o);(゚Д゚)={゚Θ゚: '_' ,゚ω゚ノ : ((゚ω゚ノ==3) +'_') [゚Θ゚] ,゚ー゚ノ :(゚ω゚ノ+ '_')[o^_^o -(゚Θ゚)] ,゚Д゚ノ:((゚ー゚==3) +'_')[゚ー゚] }; (゚Д゚) [゚Θ゚] =((゚ω゚ノ==3) +'_') [c^_^o];(゚Д゚) ['c'] = ((゚Д゚)+'_') [ (゚ー゚)+(゚ー゚)-(゚Θ゚) ];(゚Д゚) ['o'] = ((゚Д゚)+'_') [゚Θ゚];(゚o゚)=(゚Д゚) ['c']+(゚Д゚) ['o']+(゚ω゚ノ +'_')[゚Θ゚]+ ((゚ω゚ノ==3) +'_') [゚ー゚] + ((゚Д゚) +'_') [(゚ー゚)+(゚ー゚)]+ ((゚ー゚==3) +'_') [゚Θ゚]+((゚ー゚==3) +'_') [(゚ー゚) - (゚Θ゚)]+(゚Д゚) ['c']+((゚Д゚)+'_') [(゚ー゚)+(゚ー゚)]+ (゚Д゚) ['o']+((゚ー゚==3) +'_') [゚Θ゚];(゚Д゚) ['_'] =(o^_^o) [゚o゚] [゚o゚];(゚ε゚)=((゚ー゚==3) +'_') [゚Θ゚]+ (゚Д゚) .゚Д゚ノ+((゚Д゚)+'_') [(゚ー゚) + (゚ー゚)]+((゚ー゚==3) +'_') [o^_^o -゚Θ゚]+((゚ー゚==3) +'_') [゚Θ゚]+ (゚ω゚ノ +'_') [゚Θ゚]; (゚ー゚)+=(゚Θ゚); (゚Д゚)[゚ε゚]='\\'; (゚Д゚).゚Θ゚ノ=(゚Д゚+ ゚ー゚)[o^_^o -(゚Θ゚)];(o゚ー゚o)=(゚ω゚ノ +'_')[c^_^o];(゚Д゚) [゚o゚]='\"';(゚Д゚) ['_'] ( (゚Д゚) ['_'] (゚ε゚+(゚Д゚)[゚o゚]+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ (c^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ (c^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ (゚Θ゚)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (o^_^o))+ ((゚ー゚) + (゚Θ゚))+ (゚Д゚)[゚ε゚]+((゚ー゚) + (o^_^o))+ ((o^_^o) +(o^_^o))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (o^_^o))+ (o^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ ((o^_^o) +(o^_^o))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ (゚ー゚)+ (゚Θ゚)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (゚Θ゚))+ ((゚ー゚) + (o^_^o))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ ((゚ー゚) + (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ (゚ー゚)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ ((゚ー゚) + (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ (゚ー゚)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (o^_^o))+ ((゚ー゚) + (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+((゚ー゚) + (o^_^o))+ (o^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ (゚ー゚)+ ((o^_^o) +(o^_^o))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (゚Θ゚))+ ((゚ー゚) + (o^_^o))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ ((o^_^o) +(o^_^o))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ (゚ー゚)+ (゚Θ゚)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (゚Θ゚))+ (゚Θ゚)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (o^_^o))+ ((゚ー゚) + (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+((o^_^o) +(o^_^o))+ (゚Θ゚)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (o^_^o))+ (o^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (゚Θ゚))+ (゚Θ゚)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (o^_^o))+ (゚ー゚)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (o^_^o))+ ((゚ー゚) + (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (o^_^o))+ (゚Θ゚)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (o^_^o))+ (o^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (゚Θ゚))+ (゚Θ゚)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ (o^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ (o^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ (゚Θ゚)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (o^_^o))+ (o^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ (゚ー゚)+ ((o^_^o) +(o^_^o))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (゚Θ゚))+ ((゚ー゚) + (o^_^o))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ ((o^_^o) +(o^_^o))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ (゚ー゚)+ (゚Θ゚)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (゚Θ゚))+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (o^_^o))+ ((゚ー゚) + (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+((o^_^o) +(o^_^o))+ (゚Θ゚)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (o^_^o))+ (o^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (゚Θ゚))+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (o^_^o))+ (゚ー゚)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (o^_^o))+ ((゚ー゚) + (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (゚Θ゚))+ (゚Θ゚)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (o^_^o))+ (o^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (゚Θ゚))+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ (o^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ (o^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ (゚Θ゚)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (o^_^o))+ (o^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (゚Θ゚))+ ((゚ー゚) + (o^_^o))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ ((゚ー゚) + (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ (゚ー゚)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ ((゚ー゚) + (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ (゚ー゚)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ (o^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (o^_^o))+ ((゚ー゚) + (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (゚Θ゚))+ (゚Θ゚)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ (o^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ (o^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (゚Θ゚))+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ (o^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+((゚ー゚) + (o^_^o))+ ((゚ー゚) + (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ (o^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (゚Θ゚))+ (゚Θ゚)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (゚Θ゚))+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ (o^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+((゚ー゚) + (o^_^o))+ (o^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (o^_^o))+ ((゚ー゚) + (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (゚Θ゚))+ ((゚ー゚) + (o^_^o))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ ((゚ー゚) + (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ (゚ー゚)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ ((゚ー゚) + (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ (゚ー゚)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ (o^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (o^_^o))+ ((゚ー゚) + (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ (o^_^o)+ (゚ー゚)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (゚Θ゚))+ ((o^_^o) +(o^_^o))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+((゚ー゚) + (o^_^o))+ (o^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (o^_^o))+ ((゚ー゚) + (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚ー゚)+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ (゚ー゚)+ (o^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (゚Θ゚))+ ((゚ー゚) + (o^_^o))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (゚Θ゚))+ ((o^_^o) +(o^_^o))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ (o^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (゚Θ゚))+ ((゚ー゚) + (o^_^o))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (゚Θ゚))+ (゚ー゚)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ (゚ー゚)+ ((゚ー゚) + (゚Θ゚))+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ ((o^_^o) +(o^_^o))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (゚Θ゚))+ (゚ー゚)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (゚Θ゚))+ ((゚ー゚) + (o^_^o))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ (゚ー゚)+ ((゚ー゚) + (o^_^o))+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (゚Θ゚))+ ((゚ー゚) + (o^_^o))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ ((゚ー゚) + (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ (゚ー゚)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ (c^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ ((゚ー゚) + (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) +(o^_^o))+ (゚ー゚)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ (゚Θ゚)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (o^_^o))+ (o^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((゚ー゚) + (o^_^o))+ ((゚ー゚) + (゚Θ゚))+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ (゚Θ゚)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ (c^_^o)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (゚Θ゚))+ (゚Θ゚)+ (゚Д゚)[゚ε゚]+((゚ー゚) + (o^_^o))+ (o^_^o)+ (゚Д゚)[゚ε゚]+(゚Θ゚)+ ((o^_^o) - (゚Θ゚))+ (゚Д゚)[゚o゚]) (゚Θ゚)) ('_'); -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 九九乘法表 2 | 3 | 旧活新整,用最短的代码输出九九乘法表 4 | 5 | ## 比赛规则 6 | 7 | 1. 输出九九乘法表,要求呈三角形、对齐、式子之间有间隔,例: 8 | 9 | ![image](https://user-images.githubusercontent.com/18511905/228529653-f2031cc6-61dd-4be7-8a86-f06980b84031.png) 10 | 11 | 2. 允许不是直角三角形,但要注意上述规则中的对齐和间隔 12 | 3. 上传的所有文件体积最小者获胜!(结果截图、说明文档等的不算) 13 | 4. 不限编程语言,但不准自己造个语言专门输出九九乘法表的 14 | 5. 不准联网,不准通过环境变量、文件名、编译参数等耍赖 15 | 6. 其他想到再补充 16 | 17 | ## 排名 18 | 19 | **请参赛的朋友自行修改自己的排名,未添加的视为没有参赛** 20 | **Add your rank here and show off** 21 | 22 | | 作者 | 体积 | 语言 | 留言 | 23 | | :----------------------------------------------------------: | :-------: | :--------------: | :------------------------------------------------------------------------: | 24 | | [DavidWang19](DavidWang19) | 17 Bytes | Stax ([try here](https://staxlang.xyz/)) | 论golf language | 25 | | [Hyc](Hyc) | 19 Bytes | [05AB1E](https://github.com/Adriandmen/05AB1E) ([try here](https://tio.run/#osabie)) | 鲨鲨可爱 | 26 | | [lhhxxxxx](lhhxxxxx) | 34 Bytes | Mathematica | 有人犯蠢了 | 27 | | [uye](uye) | 39 Bytes | Powershell | 透透熊! | 28 | | [Horror Proton](horror-proton) | 39 Bytes | Mathematica | 作者很懒,什么都没有说.jpg | 29 | | [tursom](tursom) | 52 Bytes | Kotlin Script | 这个优化很邪门 | 30 | | [熊师傅](otakuma) | 53 Bytes | Powershell | 作者很懒,什么都没有说.jpg | 31 | | [zsqw123](zsqw123) | 56 Bytes | Ruby | zsqw123 | 32 | | [dantmnf](dantmnf) | 60 Bytes | Ruby | 作者很懒,什么都没有说.jpg | 33 | | [龟龟](guigui) | 62 Bytes | Kotlin Script | 作者很懒,什么都没有说.jpg | 34 | | [mizu-bai](mizu-bai) | 64 Bytes | Julia | 哼哼哼啊啊啊啊啊啊啊啊啊啊啊啊 | 35 | | [duskmelon](duskmelon) | 65 Bytes | R | 作者很懒,什么都没有说.jpg | 36 | | [bakashigure](bakashigure) | 66 Bytes | PHP | 哼哼哼 啊啊啊啊啊啊啊啊啊啊啊 | 37 | | [pangbo](pangbo13) | 68 Bytes | Python | 嘿嘿🤤,小莫,嘿嘿🤤,我的小莫 | 38 | | [鼹鼠](鼹鼠) | 69 Bytes | Python | 作者很懒,什么都没有说.jpg | 39 | | [FutabaRio](FutabaRio) | 70 Bytes | Python | 作者很懒,什么都没有说.jpg | 40 | | [cnachen](cnachen) | 71 Bytes | lua | 作者很懒,什么都没有说.jpg | 41 | | [abai](abai) | 71 Bytes | Python | 摆了 | 42 | | [玩水](玩水) | 71 Bytes | JavaScript | 关注嘉然,顿顿解馋! | 43 | | [XiaoMiku01](XiaoMiku01) | 71 Bytes | [GoPlus](https://github.com/goplus) | go不能压,gop还能压! | 44 | | [jcjrobert](jcjrobert) | 72 Bytes | Python | 作者不懒,什么都说了.gif | 45 | | [鬼才](鬼才) | 75 Bytes | Kotlin | 作者很懒,什么都没有说.jpg | 46 | | [奶油面包拳](奶油面包拳) | 75 Bytes | PHP | PHP没有未来 | 47 | | [谦虚](谦虚) | 77 Bytes | JavaScript | 作者很懒,什么都没有说.jpg | 48 | | [Yaossg](Yaossg) | 78 Bytes | C | 这才是 C 语言该有的样子 | 49 | | [HChenZi](HChenZi) | 79 Bytes | nodejs | 作者很懒,什么都没有说.jpg | 50 | | [Ykong](Ykong) | 79 Bytes | Rust | 作者很懒,什么都没有说.jpg | 51 | | [lawrenceli](lawrenceli) | 79 Bytes | Swift |  | 52 | | [Ns2Kracy](Ns2Kracy) | 82 Bytes | Shell | 作者很懒,什么都没有说.jpg | 53 | | [Horror Proton](horror-proton) | 84 Bytes | Shell | 作者很懒,什么都没有说.jpg | 54 | | [dragove](dragove) | 85 Bytes | Scala | 作者很懒,什么都没有说.jpg | 55 | | [Alisa](Alisa) | 91 Bytes | Python | 作者很懒,什么都没有说.jpg | 56 | | [帝宝](帝宝) | 91 Bytes | Haskell | 许佬呜呜许佬许佬快写一个| 57 | | [源文雨](fumiama) | 92 Bytes | 6502机器码 | 详见 [650299](https://github.com/fumiama/650299)| 58 | | [氷川凛](HikawaRin) | 99 Bytes | bash | 99 Bytes,事Bash | 59 | | [酱香大冰糕](酱香大冰糕) | 99 Bytes | CPP | 作者很懒,什么都没有说.jpg | 60 | | [加菲老猫](GarfieldTheOldCat) | 100 Bytes | Python | 作者很懒,什么都说了.jpg | 61 | | [XiaoMiku01](XiaoMiku01) | 100 Bytes | Go | 我不信go还能再压了 | 62 | | [知秋](知秋) | 103 Bytes | nodejs | 作者很懒,什么都没有说.jpg | 63 | | [车前子](车前子) | 104 Bytes | Haskell | 作者很懒,什么都没有说.jpg | 64 | | [blueskybone](blueskybone) | 108 Bytes | C | 作者很懒,什么都没有说.jpg | 65 | | [soybean2](soybean2) | 109 Bytes | Python | 作者很懒,什么都没有说.jpg | 66 | | [cglcv](cglcv) | 109 Bytes | MATLAB | MATLAB永不认输.jpg(但还是寄了) | 67 | | [gyro永不抽风](gyro永不抽风) | 110 Bytes | Python | 寄 | 68 | | [kokic](kokic) | 110 Bytes | Lean4 | PHP 大胜, Lean4 惨败! | 69 | | [窝窝头](mr_cino) | 113 Bytes | [Woolang](https://github.com/cinogama/woolang) | 呜呜呜,窝窝头输了呜呜呜 | 70 | | [BiDuang](BiDuang) | 115 Bytes | Pascal | 果然,大伙都已经忘却了老逼灯语言的存在... | 71 | | [XiaoX](XiaoX) | 115 Bytes | JavaScript | 菜! | 72 | | [Konoha](Konoha) | 124 Bytes | Python | 氵,好想要玛丽的手冲** | 73 | | [煖風遲來](煖風遲來) | 126 Bytes | Cpp | 作者很懒,什么都没有说.jpg | 74 | | [bigonion](bigonion) | 128 Bytes | Typescript | markdown 输! | 75 | | [萱](萱) | 138 Bytes | JAVA8 | 阿姨压一压~(~~不是为了白丝来的~~) | 76 | | [wniko](wniko) | 140 Bytes | Batch | 好崩溃 | 77 | | [cola](cola) | 144 Bytes | C | 带带萌新,大佬捞捞 | 78 | | [FuAon](FuAon) | 162 Bytes | Go | 大佬们带Go玩玩吧 | 79 | |[小小小水花](littlewater) | 163 Bytes | Java | 作者很懒,什么都没有说.jpg | 80 | | [javilak](javilak) | 192 Bytes | Cpp | 作者很懒,什么都没有说.jpg | 81 | | [maizijun2333](麦子) | 196 Bytes | Cpp | 作者很懒,什么都没有说.jpg | 82 | | [d3ara1n](d3ara1n) | 215 Bytes | CSharp | 玛丽的的黑咖啡,难喝的黑咖啡嘿嘿 | 83 | | [StupidBh](StupidBh) | 216 Bytes | Cpp | dms,hszj! | 84 | | [mnixry](mnixry) | 273 Bytes | Python | 摸了 | 85 | | [谓道之求](谓道之求) | 281 Bytes | Cpp | 作者很懒,什么都没有说.jpg | 86 | | [src](src) | 286 Bytes | Java | 作者很懒,什么都没有说.jpg | 87 | | [mizusato](mizusato) | 293 Bytes | [RxScript](https://rxgui.readthedocs.io/) | 作者很懒,什么都没有说.jpg | 88 | | [氷川凛](HikawaRin) | 362 Bytes | MSBuild with C# | 我看见有人在黑C# | 89 | | [哥斯拉](哥斯拉) | 570 Bytes | C | 累死了.jpg(还能有人比我大? | 90 | | [dzydoom](dzydoom) | 626 Bytes | x86 Assembly | 大哥们带汇编玩玩吧| 91 | | [foxwhite25](foxwhite25) | 649 Bytes | Piet | 没想到这图片还不是最后,png优化也算优化(? | 92 | | [Horror Proton](horror-proton) | 1806 Bytes | Cpp | 编译期 ( | 93 | | [一直大鸽子](一直大鸽子) | 3377 Bytes | GLSL shadertoy | 虽然这个垃圾的for循环是我写的 但是sdf是抄的大佬的 | 94 | | [Jiang-Red](Jiang-Red) | 4287 Bytes | Brainfuck | 面向结果编程 | 95 | | [LuoRenMu](Luorenmu) | 12 KiloByte | Java | 你就说能不能跑吧 | 96 | | [Helloworld](Helloworld) | 13567 Bytes | JavaScript | 我不跟你们争最少的,但我一定是第二大的 | 97 | | [Ykong](Ykong) | 18123 Bytes | WebAssembly | 作者很懒,什么都没有说.jpg | 98 | | [HisAtri](HisAtri) | 26141 Bytes |Python | 美咕噜天下第一!!!!!!!!! | 99 | 100 | ## 参赛方式 101 | 102 | - 加入本 Github 组织 或者 Pull Request 提交代码 103 | - 每个人自己建一个文件夹,在里面放上代码和 README, 截图等 104 | - 修改上面的 [排名](#排名),填入自己的成绩和想说的话 105 | 106 | ## 奖品 107 | 108 | > - 第一名:一箱难喝的无糖黑咖啡 109 | > - 参与奖 1: 随机抽一名,一箱难喝的无糖黑咖啡,由 ~~你们伟大的群主~~ 玛丽赞助 110 | > - 参与奖 2: 随机抽一名,一张 `KFC V50` 卡,由 [@bakashigure](bakashigure) 赞助 111 | > - 参与奖 3: 随机抽一名,一张 `KFC V50` 卡,由 [@群守夜人](https://github.com/nvkou) 赞助 112 | > - 参与奖 4: 随机抽一名,一份白丝图集 ~~(?这是否)~~,由 [@WPX](https://github.com/WWPXX233) 赞助 113 | > - 参与奖 5: 随机抽一名,一张 `KFC V50` 卡,由 [@TTTTTTTT-Teio](https://github.com/TTTTTTTT-Teio) 赞助 114 | 115 | ## 比赛时间 116 | 117 | 比赛结束,但还是欢迎各位提交 PR 哦~ 118 | 119 | ## 讨论 120 | 121 | 欢迎加入 [QQ 群](https://jq.qq.com/?_wv=1027&k=8aBWumWU) (672372860), [Telegram 群](https://t.me/+NjDljiDRrpI4NTU1) ,或通过 issue, discussions 讨论! 122 | -------------------------------------------------------------------------------- /Luorenmu/main.java: -------------------------------------------------------------------------------- 1 | ** 2 | * @author LoMu 3 | * Date 2023-03-29 20:33 4 | */ 5 | public class main { 6 | public static void main(String[] args) { 7 | one a = new one(); 8 | two b = new two(); 9 | three c = new three(); 10 | four d = new four(); 11 | five e = new five(); 12 | six f = new six(); 13 | seven g = new seven(); 14 | eight h = new eight(); 15 | nine i = new nine(); 16 | 17 | a.setOne(1); 18 | b.setTwo(2); 19 | c.setThree(3); 20 | d.setFour(4); 21 | e.setFive(5); 22 | f.setSix(6); 23 | g.setSeven(7); 24 | h.setEight(8); 25 | i.setNine(9); 26 | 27 | int one = a.getOne(); 28 | int two = b.getTwo(); 29 | int three = c.getThree(); 30 | int four = d.getFour(); 31 | int five = e.getFive(); 32 | int six = f.getSix(); 33 | int seven = g.getSeven(); 34 | int eight = h.getEight(); 35 | int nine = i.getNine(); 36 | 37 | System.out.print(one); 38 | System.out.print("x"); 39 | System.out.print(one); 40 | System.out.print("="); 41 | System.out.print(one*one); 42 | System.out.println(); 43 | System.out.print(one); 44 | System.out.print("x"); 45 | System.out.print(two); 46 | System.out.print("="); 47 | System.out.print(two*one); 48 | System.out.print("\t"); 49 | System.out.print(two); 50 | System.out.print("x"); 51 | System.out.print(two); 52 | System.out.print("="); 53 | System.out.print(two*two); 54 | System.out.println(); 55 | System.out.print(one); 56 | System.out.print("x"); 57 | System.out.print(three); 58 | System.out.print("="); 59 | System.out.print(three*one); 60 | System.out.print("\t"); 61 | System.out.print(two); 62 | System.out.print("x"); 63 | System.out.print(three); 64 | System.out.print("="); 65 | System.out.print(three*two); 66 | System.out.print("\t"); 67 | System.out.print(three); 68 | System.out.print("x"); 69 | System.out.print(three); 70 | System.out.print("="); 71 | System.out.print(three*three); 72 | System.out.println(); 73 | System.out.print(one); 74 | System.out.print("x"); 75 | System.out.print(four); 76 | System.out.print("="); 77 | System.out.print(four*one); 78 | System.out.print("\t"); 79 | System.out.print(two); 80 | System.out.print("x"); 81 | System.out.print(four); 82 | System.out.print("="); 83 | System.out.print(four*two); 84 | System.out.print("\t"); 85 | System.out.print(three); 86 | System.out.print("x"); 87 | System.out.print(four); 88 | System.out.print("="); 89 | System.out.print(four*three); 90 | System.out.print("\t"); 91 | System.out.print(four); 92 | System.out.print("x"); 93 | System.out.print(four); 94 | System.out.print("="); 95 | System.out.print(four*four); 96 | System.out.println(); 97 | System.out.print(one); 98 | System.out.print("x"); 99 | System.out.print(five); 100 | System.out.print("="); 101 | System.out.print(five*one); 102 | System.out.print("\t"); 103 | System.out.print(two); 104 | System.out.print("x"); 105 | System.out.print(five); 106 | System.out.print("="); 107 | System.out.print(five*two); 108 | System.out.print("\t"); 109 | System.out.print(three); 110 | System.out.print("x"); 111 | System.out.print(five); 112 | System.out.print("="); 113 | System.out.print(five*three); 114 | System.out.print("\t"); 115 | System.out.print(four); 116 | System.out.print("x"); 117 | System.out.print(five); 118 | System.out.print("="); 119 | System.out.print(five*four); 120 | System.out.print("\t"); 121 | System.out.print(five); 122 | System.out.print("x"); 123 | System.out.print(five); 124 | System.out.print("="); 125 | System.out.print(five*five); 126 | System.out.println(); 127 | System.out.print(one); 128 | System.out.print("x"); 129 | System.out.print(six); 130 | System.out.print("="); 131 | System.out.print(six*one); 132 | System.out.print("\t"); 133 | System.out.print(two); 134 | System.out.print("x"); 135 | System.out.print(six); 136 | System.out.print("="); 137 | System.out.print(six*two); 138 | System.out.print("\t"); 139 | System.out.print(three); 140 | System.out.print("x"); 141 | System.out.print(six); 142 | System.out.print("="); 143 | System.out.print(six*three); 144 | System.out.print("\t"); 145 | System.out.print(four); 146 | System.out.print("x"); 147 | System.out.print(six); 148 | System.out.print("="); 149 | System.out.print(six*four); 150 | System.out.print("\t"); 151 | System.out.print(five); 152 | System.out.print("x"); 153 | System.out.print(six); 154 | System.out.print("="); 155 | System.out.print(six*five); 156 | System.out.print("\t"); 157 | System.out.print(six); 158 | System.out.print("x"); 159 | System.out.print(six); 160 | System.out.print("="); 161 | System.out.print(six*six); 162 | System.out.println(); 163 | System.out.print(one); 164 | System.out.print("x"); 165 | System.out.print(seven); 166 | System.out.print("="); 167 | System.out.print(seven*one); 168 | System.out.print("\t"); 169 | System.out.print(two); 170 | System.out.print("x"); 171 | System.out.print(seven); 172 | System.out.print("="); 173 | System.out.print(seven*two); 174 | System.out.print("\t"); 175 | System.out.print(three); 176 | System.out.print("x"); 177 | System.out.print(seven); 178 | System.out.print("="); 179 | System.out.print(seven*three); 180 | System.out.print("\t"); 181 | System.out.print(four); 182 | System.out.print("x"); 183 | System.out.print(seven); 184 | System.out.print("="); 185 | System.out.print(seven*four); 186 | System.out.print("\t"); 187 | System.out.print(five); 188 | System.out.print("x"); 189 | System.out.print(seven); 190 | System.out.print("="); 191 | System.out.print(seven*five); 192 | System.out.print("\t"); 193 | System.out.print(six); 194 | System.out.print("x"); 195 | System.out.print(seven); 196 | System.out.print("="); 197 | System.out.print(seven*six); 198 | System.out.print("\t"); 199 | System.out.print(seven); 200 | System.out.print("x"); 201 | System.out.print(seven); 202 | System.out.print("="); 203 | System.out.print(seven*seven); 204 | System.out.println(); 205 | System.out.print(one); 206 | System.out.print("x"); 207 | System.out.print(eight); 208 | System.out.print("="); 209 | System.out.print(eight*one); 210 | System.out.print("\t"); 211 | System.out.print(two); 212 | System.out.print("x"); 213 | System.out.print(eight); 214 | System.out.print("="); 215 | System.out.print(eight*two); 216 | System.out.print("\t"); 217 | System.out.print(three); 218 | System.out.print("x"); 219 | System.out.print(eight); 220 | System.out.print("="); 221 | System.out.print(eight*three); 222 | System.out.print("\t"); 223 | System.out.print(four); 224 | System.out.print("x"); 225 | System.out.print(eight); 226 | System.out.print("="); 227 | System.out.print(eight*four); 228 | System.out.print("\t"); 229 | System.out.print(five); 230 | System.out.print("x"); 231 | System.out.print(eight); 232 | System.out.print("="); 233 | System.out.print(eight*five); 234 | System.out.print("\t"); 235 | System.out.print(six); 236 | System.out.print("x"); 237 | System.out.print(eight); 238 | System.out.print("="); 239 | System.out.print(eight*six); 240 | System.out.print("\t"); 241 | System.out.print(seven); 242 | System.out.print("x"); 243 | System.out.print(eight); 244 | System.out.print("="); 245 | System.out.print(eight*seven); 246 | System.out.print("\t"); 247 | System.out.print(eight); 248 | System.out.print("x"); 249 | System.out.print(eight); 250 | System.out.print("="); 251 | System.out.print(eight*eight); 252 | System.out.println(); 253 | System.out.print(one); 254 | System.out.print("x"); 255 | System.out.print(nine); 256 | System.out.print("="); 257 | System.out.print(nine*one); 258 | System.out.print("\t"); 259 | System.out.print(two); 260 | System.out.print("x"); 261 | System.out.print(nine); 262 | System.out.print("="); 263 | System.out.print(nine*two); 264 | System.out.print("\t"); 265 | System.out.print(three); 266 | System.out.print("x"); 267 | System.out.print(nine); 268 | System.out.print("="); 269 | System.out.print(nine*three); 270 | System.out.print("\t"); 271 | System.out.print(four); 272 | System.out.print("x"); 273 | System.out.print(nine); 274 | System.out.print("="); 275 | System.out.print(nine*four); 276 | System.out.print("\t"); 277 | System.out.print(five); 278 | System.out.print("x"); 279 | System.out.print(nine); 280 | System.out.print("="); 281 | System.out.print(nine*five); 282 | System.out.print("\t"); 283 | System.out.print(six); 284 | System.out.print("x"); 285 | System.out.print(nine); 286 | System.out.print("="); 287 | System.out.print(nine*six); 288 | System.out.print("\t"); 289 | System.out.print(seven); 290 | System.out.print("x"); 291 | System.out.print(nine); 292 | System.out.print("="); 293 | System.out.print(nine*seven); 294 | System.out.print("\t"); 295 | System.out.print(eight); 296 | System.out.print("x"); 297 | System.out.print(nine); 298 | System.out.print("="); 299 | System.out.print(nine*eight); 300 | System.out.print("\t"); 301 | System.out.print(nine); 302 | System.out.print("x"); 303 | System.out.print(nine); 304 | System.out.print("="); 305 | System.out.print(nine*nine); 306 | 307 | 308 | 309 | } 310 | 311 | public static class one { 312 | private int one; 313 | public int getOne() { 314 | return one; 315 | } 316 | public void setOne(int one) { 317 | this.one = one; 318 | } 319 | } 320 | 321 | public static class two{ 322 | private int two; 323 | 324 | public int getTwo() { 325 | return two; 326 | } 327 | 328 | public void setTwo(int two) { 329 | this.two = two; 330 | } 331 | } 332 | 333 | public static class three{ 334 | private int three; 335 | 336 | public int getThree() { 337 | return three; 338 | } 339 | 340 | public void setThree(int three) { 341 | this.three = three; 342 | } 343 | } 344 | 345 | public static class four{ 346 | private int four; 347 | 348 | public int getFour() { 349 | return four; 350 | } 351 | 352 | public void setFour(int four) { 353 | this.four = four; 354 | } 355 | } 356 | public static class five{ 357 | private int five ; 358 | 359 | public int getFive() { 360 | return five; 361 | } 362 | 363 | public void setFive(int five) { 364 | this.five = five; 365 | } 366 | } 367 | public static class six{ 368 | private int six; 369 | 370 | public int getSix() { 371 | return six; 372 | } 373 | 374 | public void setSix(int six) { 375 | this.six = six; 376 | } 377 | } 378 | public static class seven{ 379 | private int seven; 380 | 381 | public int getSeven() { 382 | return seven; 383 | } 384 | 385 | public void setSeven(int seven) { 386 | this.seven = seven; 387 | } 388 | } 389 | public static class eight{ 390 | private int eight; 391 | 392 | public int getEight() { 393 | return eight; 394 | } 395 | 396 | public void setEight(int eight) { 397 | this.eight = eight; 398 | } 399 | } 400 | public static class nine{ 401 | private int nine; 402 | 403 | public int getNine() { 404 | return nine; 405 | } 406 | 407 | public void setNine(int nine) { 408 | this.nine = nine; 409 | } 410 | } 411 | } 412 | -------------------------------------------------------------------------------- /HisAtri/但求最大.py: -------------------------------------------------------------------------------- 1 | ################ 2 | #ₘₙⁿ 3 | #▏n 4 | #█▏ 、⺍ 5 | #█▏ ⺰ʷʷィ 6 | #█◣▄██◣ 7 | #◥██████▋ 8 | # ◥████ █▎ 9 | #  ███▉ █▎ 10 | # ◢████◣⌠ₘ℩ 11 | #  ██◥█◣\≫ 12 | #  ██ ◥█◣ 13 | #  █▉  █▊ 14 | #  █▊  █▊ 15 | #  █▊  █▋ 16 | #   █▏  █▙ 17 | #   █ 18 | #不要停下来啊 19 | ################ 20 | 21 | 22 | 23 | # 24 | #此代碼已被標記為逆天(官方聲明) 25 | #請注意,這代碼的內容過於逆天,可能會使人產生惡心、頭暈等不適症狀,亦有可能使閣下情緒有負面影響,因此我們認為這個代碼不適合任何人仕觀看。 26 | #如閣下仍然執意決定要觀看,請閣下自行承受觀看後的後果。若有任何不適症狀,請立刻停止觀看並及時向醫師尋求幫助。 27 | #​ 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | #你真的决定阅读源代码了吗? 45 | 46 | #点击任意按钮开始 47 | #Press Power Button to Shutdown 48 | 49 | class 柚子厨: 50 | pass 51 | 柚子厨.Fact = """ 52 | ... ...,]]]]]]]OO@@@@@@@@@@@@@@@@@@OO[/[O,O`......................... 53 | .......******[*,[[\ooooooOO[[[[[`...................******`,`.. ......................... 54 | ........******************......... ...............................]]]]]/O@@@@@@@OO@.......................... 55 | ................... . ...]]]]]OOOOOOOOOOOOOOOOOO@@@@@@@@@@@@@@@.......................... 56 | ...`]..**,]]/ooo[[[[\ooooooOOOOOooooooooOOOOOOOO@OOO/[[[[[*.... ...*=*................... 57 | .......**]]]***[[[[[o\]]]]`,ooo/]***[ooo[[[[`*****.*/OO/[**......*.... .............. .***/`*.................. 58 | ........................*.***********,oooooooo[****......]ooo[\/OOOO/*............***.*,\`........... .**^Oo**................. 59 | ........................**............ .]o\`*....,//O/*..............**`]`***,\]....***. .\ooOoo**................ 60 | .............. ./OO/o]]]]*.*/OO\.*.................********\O..**`. .ooOOOo\**............... 61 | ...... ,OOOOooooOo/`OOOOOOOO]*..............**..******,OO\.*. .oOOOOOoo\**............. 62 | .......*=\,/,/,]O@/OOOOOOOOO]/`*OOOOOOO[[`***...*...........*****\,]*=OO\. .OOOOOOOooo`***.......... 63 | ....,OOOOO@\,OO@O@@@O^*****.**.\OOOOOOOOOOo\]*.****....************.**\@/OOO`.oOOOOOOOOOoo\****....... 64 | ...,OOO[/OO=O=OO@@OOOOO/`******,/OOOO[**..........**[\]`**********.*****,\@OOOO`oOOOOOOOOOOooo`****.... 65 | ./.=oO`=OO@\O@.O@O\OOOOOOOO/[OOOOOO`**.*.........**..**.*,\O\]`****.=]`****\@@@OO^*[oOOooooo[*[[[[[[[**. 66 | /^ .=^.o\OOOOO\^OOOO@@O`*.***********.***.................****[O@@\`***,O],**,@@@OOO..................... 67 | =/ .**OOOO^/@@@\OOOO/*.*.************.********************..**,]*\@O@@O`*\@@\*,O@@@OO` .................. 68 | =o. .*OO^^O=@@@@@OO/.***************.,[[[\OOO@O\`****.**********.,\.,@@@@@O/O@@@]\OO@@O^ 69 | .o^ .OOO=O@@@@@@OO`*.*.****.*********.************[O`*.********..*.\@O/O@@@@@O@@@@@OOOOOO................ 70 | =o^ /OO\O]OO@@@=O********,/`.*******************************.****...,O@@OO@@@@@@@@@@@OOOOO`............... 71 | .oo^ ,\OOOOOOO`[/O*/..**.//************************************..******`\@@OOOO@@@@@@@@OOOOOO\.............. 72 | .\^^ =,OOO/*OO/O/,/.****[**.******************\O`************..*********O`\@@@OOOO@@@@@OOOO@OOO\. .......... 73 | . .=*. =OOO^*=O/OO=^************/*.*************.oOO****,\*....,^**********\O/@@@@@OOOOOO@OOOOO@@OOO` . .. 74 | ........ .`,O`O^**O^///^****.***.*.*,O*****************OOO^*.*,O^****,O`*********\@@O@@@@@@@@@@@OOOOO@@@@@OOoOO]. 75 | ............... ./`*OO`,//=OO[.**..********OO*^**************O*OOO\****OOo***,@\*******=\O@@OOOO@@O@@@@OOOOO@@O/\O`*,[[\O] 76 | ...................**OOO,`=OO@^.*.**^*******=OO*O***.**********OO/@OOO\***@OO\**,@\*^*****\/@@@OOOOO@@@O@@OOOOO@O\**\^. .o 77 | .......................^OOO^*OO@@*****O`******,OO@=@^*************OOOo@OOOO**=@@OO**=@^******=O\@@O@@@OOOO@O@O@OOOOOO\=\/`..//` 78 | ....................*./=OOO*/OO@^**.*=Oo******/OO@^@O**,^*********OOOOOOOOOO`*O@@OO`*\@^******@\@OOOO@@@@OOOOOO@OOOO@O[\O^[*... 79 | ..................***/..OO`=@O@@=****OOO*****=OOO@^O@^**=`********OOOOOOOOOOO`=O@@OO^`O@`*****O@O@OOO@@@@@@@O@@OOOOO@@O/=O*... 80 | ..................OO\`...O,@OO@O@***=@OO*****=OOOOOO@O**,O`*******OOOOOOOOOOOO`OOOOO@\/@O*****O@O@OOOO@@@@@@O@@@@@@@@O*/O^.*. . 81 | ..................,O^....O/@O@@O@^**=@O@^****OOOOOOOO@O**=@\*****=OOOOOOOOOOOOO/OOOOO@OO@^****\@O@OOOO@@@@@@@@@@@@@@@O/O@*****, 82 | ...................=^....O@@O@@O@@**=@O@^***=OOOOOOOOOO\**=@O****OOOOOOOOOOOOOOOOOOOOOOOO@****O@@@OOOO@@@OO@@@@@@@@@@OOO`,*OO/` 83 | ...................=^....O=O@@@O@@^*O@O@O`**=OOOOOOOOOOO^**OOO`**OOOOOOOOOoOOOOOOOO^=OOOO@^***O@@OOOOO@@@O@@@@@@@@@@OOOoOO`**]] 84 | ...................*^....==OO@@O@@O*OO@@O\**=OOOOo/OOOOOO\**OOO\=OOO@OOOOOOOOOOOOOOO*=OOOO\***O@@@OOOOO@@@@@@@@@@@^O@@OO/[[**** 85 | ....................\`....OOOO@O@@@\OO@OOO\*OOOOO^^,OOOOOOO*,OOOOOOOOOOOOO,.=o`oooOO*.=O\O@**=OOOOOOOOO@@@@@O@@@/,O[*********** 86 | ....................,o`...OOOO@@OO@@@OOOOOO^OOOO@O*.=OOOOOOO`=OOOOOOOOOooo*. \^.o\oo,]/@oO@^*=OOOOOOOO@@@@@@@@/,O/*,**,]OOOOOOO 87 | ......................\\]/OOOOOOOOOO@OOOOOOO/OOOOO*. =OOOOOOO\,OOOOOOOo^oo`..,\]/@OO@@@@@@@OOOOOOOOOOO@@@@@@@\OOOO]O@@OOOOOOOOO 88 | ....................**[[.,oo^*=OOOOOO@O@OOOOOOOO/O^. \^OOoOOOO^OOoOooo^=o/\@@@@@@@@@@@@@@@OOOOOOOOOOO@@@@@OOOOOOO`************ 89 | ...................*.**,****`*=OOOOOO@OOOOOOOOOO\OO\]]OO/\ooOOoooooo/=o`.*O@@@`\@@@@@@@@^,`*/OOOOOOO@O@@@@OOOO/`*************** 90 | .............***.*,]]OOOOOO\o]*OOOOOOO^O@OOOO@OO@@@@@@@@@@O\ooOoo/oO`=,..\OO`...@@@@@@@@\].=OOOOOOOO@@@@@@O/******************* 91 | ..........*]]OOOOOOO@@@@@@@@@@O\O@OOOOOO@OOOO@@OO@/`.@@@@@@@\\^\O^**`,*..... =@@@@@@O@/]OOOOOOOO\@@@@@^********]oooo/o`***** 92 | ..*]]OO@@@@@@@@@@@@@@@@@@@@@O/*=O@@OOOOOO@OOO@@@OOO.. @@@@@. ,,`*\o]***.... ,@@O\O@`.O@OOOOOOO@@@@^******,/OOooooo[******* 93 | @@@@@@@@@@@@@@@@@` ...,o*.=@@@OOOOOOO@OOO@@@OO` @@@@@@ .\***..=***.. .]]]^ /O\OOOOOO@@@/******/OOOOOOo/********** 94 | @@@@@@@@@@@@@@O` .]]]]]]]/^*.O@O@@OOOOOO@@OOO@OOOo. ,@\/@ .... ...***. =O*oOOOOO@@O/****=OOOOOOO/************* 95 | @@@@@@@@@@@@/..............=^.,OO@@@@OOOOOO@@OOOOOOOO` ]]]. ..*......... =/.,=OOOO@/[[....[[[[[....,`*********,/o 96 | @@@@@@[` .O**O**\@@@OO@OOO@OOOOOOOO^,. . . . ,`..*OOOO@`.... .,[,*]/[]/[ 97 | @@[ ...........=O*=***[O@@@O@@OOOOOOOOOOO^.... ....,O` .,\\ 98 | ...........\\[/[[\OO@@O@@@OOOOOOOOOOO\. ...,@O. . ..... 99 | \O=^,*,`*\O@@@@@OOOOOOOOOOO\. =oo\. ..]@@@`................... .... 100 | ..[OO\******OOO@@@O@OOOOOOOOooo@@\]. ,..*. .,/@@@@[.. ......** 101 | .***.*.\@\****=OO/`]@@OOO@OO@@Ooooo/@@@@@@@]` ,/@@@@@`.... .......****.* 102 | .*...******,OO*],OO@@@@@@OO@@@@@@@@@@O/o/O@@@@@@@@@@]]/@@@@@@@`.*............. ..........**/[[*......** 103 | .........********,\@@@@@@@@@O@@@@@@@@@@@@@@@@@@@@@@@@@@@@@/[. ..................***]@ 104 | ............*****../@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@/ ..............*,@@@@ 105 | ..............***..,/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@`...,]].... ....................,O@O@@@@ 106 | .................*,]o/[*...]/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@O` . ..... .................,/@@@@@@@@@ 107 | ......**[[[[[[[[*..*..../@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@^ ...,. ................/@@@@@@@@@@@@ 108 | ...................]/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@`....... ...... ..............]@@@@@@@@@@@@@@@ 109 | ..........**]]/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@` ..................,/@@O@@@@@@@@@@@@@@ 110 | ......***/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@[ ............../@@@@@@@@@@@@@@@@@@@@ 111 | ....]/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@/. .... ..........]@@@@@@@@@@@@@@@@@@@@@@@ 112 | @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@` ................,@@@@@@@@@@@@@@@@@@@@@@@@@@ 113 | @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@/`. ................/@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 114 | @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@/.. ...............,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 115 | @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@/ . ............../@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 116 | 美咕噜天下第一美咕噜天下第一美咕噜天下第一美咕噜天下第一美咕噜天下第一美咕噜天下第一美咕噜天下第一美咕噜天下第一美咕噜天下第一美咕噜天下第一 117 | 118 | """ 119 | 柚子厨.co1 = 10000 120 | 柚子厨.co2 = 90000 121 | 柚子厨.Brain = None 122 | 123 | #计算第n个质数 124 | def 怎么不算啦_这分明就是乳O嘛_我确实在用柰子夹住你的小OO上下抽动啊_你看_你看(团长_车备好了): 125 | 感觉好安静啊_街上也没有加拉尔霍恩的人_和总部差别真大 = [] 126 | 呵_哈_什么嘛_我的枪法还挺准的嘛 = [True] * (团长_车备好了 * 20) 127 | for 只要我们不停下脚步_道路就会不断延伸_所以说_不要停下来啊 in range(2, 团长_车备好了 * 20): 128 | if 呵_哈_什么嘛_我的枪法还挺准的嘛[只要我们不停下脚步_道路就会不断延伸_所以说_不要停下来啊]: 129 | 感觉好安静啊_街上也没有加拉尔霍恩的人_和总部差别真大.append(只要我们不停下脚步_道路就会不断延伸_所以说_不要停下来啊) 130 | if len(感觉好安静啊_街上也没有加拉尔霍恩的人_和总部差别真大) == 团长_车备好了: 131 | break 132 | for 全部木大 in 感觉好安静啊_街上也没有加拉尔霍恩的人_和总部差别真大: 133 | if 只要我们不停下脚步_道路就会不断延伸_所以说_不要停下来啊 * 全部木大 >= 团长_车备好了 * 20: 134 | break 135 | 呵_哈_什么嘛_我的枪法还挺准的嘛[只要我们不停下脚步_道路就会不断延伸_所以说_不要停下来啊 * 全部木大] = False 136 | if 只要我们不停下脚步_道路就会不断延伸_所以说_不要停下来啊 % 全部木大 == 0: 137 | break 138 | return 感觉好安静啊_街上也没有加拉尔霍恩的人_和总部差别真大[团长_车备好了 - 1] 139 | 140 | #反解第n个质数 141 | def 磨个屁啊_你什么意思啊_亏我鼓起勇气来给你乳O_而且你这人怎么说话的_什么叫越磨越细_再说我一口把它咬断(团长_车备好了): 142 | 感觉好安静啊_街上也没有加拉尔霍恩的人_和总部差别真大 = [] 143 | 呵_哈_什么嘛_我的枪法还挺准的嘛 = [True] * (团长_车备好了 * 20) 144 | for 只要我们不停下脚步_道路就会不断延伸_所以说_不要停下来啊 in range(2, 团长_车备好了 * 20): 145 | if 呵_哈_什么嘛_我的枪法还挺准的嘛[只要我们不停下脚步_道路就会不断延伸_所以说_不要停下来啊]: 146 | 感觉好安静啊_街上也没有加拉尔霍恩的人_和总部差别真大.append(只要我们不停下脚步_道路就会不断延伸_所以说_不要停下来啊) 147 | if 只要我们不停下脚步_道路就会不断延伸_所以说_不要停下来啊 == 团长_车备好了: 148 | break 149 | for 全部木大 in 感觉好安静啊_街上也没有加拉尔霍恩的人_和总部差别真大: 150 | if 只要我们不停下脚步_道路就会不断延伸_所以说_不要停下来啊 * 全部木大 >= 团长_车备好了 * 20: 151 | break 152 | 呵_哈_什么嘛_我的枪法还挺准的嘛[只要我们不停下脚步_道路就会不断延伸_所以说_不要停下来啊 * 全部木大] = False 153 | if 只要我们不停下脚步_道路就会不断延伸_所以说_不要停下来啊 % 全部木大 == 0: 154 | break 155 | return 感觉好安静啊_街上也没有加拉尔霍恩的人_和总部差别真大.index(团长_车备好了) + 1 156 | 157 | #映射 158 | def 千恋万花(xaa): 159 | if xaa < 0 or xaa > 100: 160 | return None 161 | else: 162 | return int((xaa / 100) * 柚子厨.co2 + 柚子厨.co1) 163 | 164 | #反向映射 165 | def 花万恋千(yaa): 166 | result = int(((yaa - 柚子厨.co1) / 柚子厨.co2) * 100) 167 | return result 168 | 169 | #因式分解花万恋千 170 | def 死に逝く君_館に芽吹く憎悪(num): 171 | factors = [] 172 | divisor = 2 173 | 174 | while divisor <= num: 175 | if num % divisor == 0: 176 | factors.append(divisor) 177 | num //= divisor 178 | else: 179 | divisor += 1 180 | 181 | return factors 182 | 183 | #加密数组 184 | def 星光咖啡馆与死神之蝶(求你了别发了我音游打得再菜我都不会觉得难过只有你们发这种成绩图的时候我的心里像刀割一样地痛着打着字泪水就忍不住地往下流): 185 | rootnum = 1 186 | for num in 求你了别发了我音游打得再菜我都不会觉得难过只有你们发这种成绩图的时候我的心里像刀割一样地痛着打着字泪水就忍不住地往下流: 187 | enum = 千恋万花(num) 188 | primenum = 怎么不算啦_这分明就是乳O嘛_我确实在用柰子夹住你的小OO上下抽动啊_你看_你看(enum) 189 | rootnum = rootnum * primenum 190 | return(rootnum) 191 | 192 | #解密数组 193 | def 死神咖啡馆与星光之蝶(rootnum): 194 | list0 = [] 195 | primelist = 死に逝く君_館に芽吹く憎悪(rootnum) 196 | for pr in primelist: 197 | tnum = 磨个屁啊_你什么意思啊_亏我鼓起勇气来给你乳O_而且你这人怎么说话的_什么叫越磨越细_再说我一口把它咬断(pr) 198 | result = 花万恋千(tnum) 199 | list0.append(result) 200 | return list0 201 | 202 | #进制转换 203 | def bina(为什么会变成这样呢_第一次有了喜欢的人_有了能做一辈子朋友的人_两件快乐事情重合在一起_而这两份快乐_又给我带来更多的快乐_得到的_本该是像梦境一般幸福的时间_但是_为什么_会变成这样呢): 204 | if 为什么会变成这样呢_第一次有了喜欢的人_有了能做一辈子朋友的人_两件快乐事情重合在一起_而这两份快乐_又给我带来更多的快乐_得到的_本该是像梦境一般幸福的时间_但是_为什么_会变成这样呢 == 0: 205 | return '0' 206 | 是我_是我先_明明都是我先来的_接吻也好_拥抱也好_还是喜欢上那家伙也好 = '' 207 | while 为什么会变成这样呢_第一次有了喜欢的人_有了能做一辈子朋友的人_两件快乐事情重合在一起_而这两份快乐_又给我带来更多的快乐_得到的_本该是像梦境一般幸福的时间_但是_为什么_会变成这样呢 > 0: 208 | 为什么你会这么熟练啊_你和雪菜亲过多少次了啊_你到底要把我甩开多远你才甘心啊 = 为什么会变成这样呢_第一次有了喜欢的人_有了能做一辈子朋友的人_两件快乐事情重合在一起_而这两份快乐_又给我带来更多的快乐_得到的_本该是像梦境一般幸福的时间_但是_为什么_会变成这样呢 % 2 209 | 是我_是我先_明明都是我先来的_接吻也好_拥抱也好_还是喜欢上那家伙也好 = str(为什么你会这么熟练啊_你和雪菜亲过多少次了啊_你到底要把我甩开多远你才甘心啊) + 是我_是我先_明明都是我先来的_接吻也好_拥抱也好_还是喜欢上那家伙也好 210 | 为什么会变成这样呢_第一次有了喜欢的人_有了能做一辈子朋友的人_两件快乐事情重合在一起_而这两份快乐_又给我带来更多的快乐_得到的_本该是像梦境一般幸福的时间_但是_为什么_会变成这样呢 //= 2 211 | return 是我_是我先_明明都是我先来的_接吻也好_拥抱也好_还是喜欢上那家伙也好 212 | 213 | #字符串长度 214 | def strlen(戏说不是胡说_改编不是乱编_你们这样是要向全国人民谢罪的): 215 | 什么叫国际巨星啊 = list(戏说不是胡说_改编不是乱编_你们这样是要向全国人民谢罪的) 216 | 战术后仰 = 0 217 | while True: 218 | try: 219 | if 什么叫国际巨星啊[战术后仰] != "": 220 | 战术后仰 = 战术后仰 + 1 221 | 什么叫国际巨星啊[战术后仰] 222 | except IndexError: 223 | break 224 | return 战术后仰 225 | 226 | def zipa(Max_Verstappan, Charles_Leclerc): 227 | # 检查参数类型 228 | if not (isinstance(Max_Verstappan, (list, tuple, str)) and isinstance(Charles_Leclerc, (list, tuple, str))): 229 | raise TypeError("参数必须为列表、元组或字符串") 230 | # 处理字符串类型 231 | if isinstance(Max_Verstappan, str): 232 | Max_Verstappan = list(Max_Verstappan) 233 | if isinstance(Charles_Leclerc, str): 234 | Charles_Leclerc = list(Charles_Leclerc) 235 | # 确定迭代次数,使用最短的序列长度 236 | length = min(len(Max_Verstappan), len(Charles_Leclerc)) 237 | # 使用for循环配对元素 238 | result = [] 239 | for Mattia_Binotto in range(length): 240 | result.append((Max_Verstappan[Mattia_Binotto], Charles_Leclerc[Mattia_Binotto])) 241 | # 返回元素配对后的列表 242 | return result 243 | 244 | #实现xor 245 | def 灵感满溢的甜蜜创想(伊地知虹夏, 喜多郁代): 246 | 后藤一里 = bina(伊地知虹夏) 247 | 山田凉 = bina(喜多郁代) 248 | max_len = max(strlen(后藤一里), strlen(山田凉)) 249 | 后藤一里 = 后藤一里.rjust(max_len, '0') 250 | 山田凉 = 山田凉.rjust(max_len, '0') 251 | result = [] 252 | for a, b in zipa(后藤一里, 山田凉): 253 | # 将 a 和 b 转换为整数 254 | a_int, b_int = int(a), int(b) 255 | # 计算 a XOR b 的结果 256 | xor_result = int((not a_int and b_int) or (a_int and not b_int)) 257 | # 将计算结果转换为字符串,并添加到结果列表中 258 | result.append(str(xor_result)) 259 | # 将结果列表中的元素连接成一个字符串 260 | result = ''.join(result) 261 | return int(result, 2) 262 | 263 | #实现and 264 | def 美少女万华镜(伊地知虹夏, 喜多郁代): 265 | 后藤一里 = bina(伊地知虹夏) 266 | 山田凉 = bina(喜多郁代) 267 | max_len = max(strlen(后藤一里), strlen(山田凉)) 268 | 后藤一里 = 后藤一里.rjust(max_len, '0') 269 | 山田凉 = 山田凉.rjust(max_len, '0') 270 | result = [] 271 | for a, b in zipa(后藤一里, 山田凉): 272 | # 将 a 和 b 转换为布尔值,使用 not not 实现 273 | a_bool, b_bool = not not int(a), not not int(b) 274 | # 计算 a & b 的结果,并转换为字符串 275 | ab_result = str(a_bool * b_bool) 276 | # 将计算结果添加到结果列表中 277 | result.append(ab_result) 278 | # 将结果列表中的元素连接成一个字符串 279 | result = ''.join(result) 280 | return int(result, 2) 281 | 282 | #实现加法 283 | def 九次九日九重色(巴, 麻美): 284 | if 麻美 == 0: 285 | return 巴 286 | else: 287 | 美树沙耶香 = 灵感满溢的甜蜜创想(巴, 麻美) 288 | 是笨蛋 = (美少女万华镜(巴, 麻美)) << 1 289 | return 九次九日九重色(美树沙耶香, 是笨蛋) 290 | 291 | #实现加法2 292 | def 天色天歌天籁音(Reimu, Marisa): 293 | NTR必死 = str(Reimu) 294 | 纯爱党必胜 = str(Marisa) 295 | 296 | Reimu_ご主人様バカな = [] 297 | for 誰でも大好き in NTR必死: 298 | Reimu_ご主人様バカな.append(int(誰でも大好き)) 299 | 300 | Marisa_ご主人様バカな = [] 301 | for 誰でも大好き in 纯爱党必胜: 302 | Marisa_ご主人様バカな.append(int(誰でも大好き)) 303 | 304 | result = [] 305 | 306 | 蕾米莉亚_威严满满_斯卡雷特_抱头蹲防 = 0 307 | 308 | while strlen(Reimu_ご主人様バカな) > 0 or strlen(Marisa_ご主人様バカな) > 0: 309 | if strlen(Reimu_ご主人様バカな) > 0: 310 | 晓美焰魔万受无疆 = Reimu_ご主人様バカな.pop() 311 | else: 312 | 晓美焰魔万受无疆 = 0 313 | if strlen(Marisa_ご主人様バカな) > 0: 314 | 鹿目圆神攻德无量 = Marisa_ご主人様バカな.pop() 315 | else: 316 | 鹿目圆神攻德无量 = 1 317 | 鹿目圆神攻德无量 -= 1 318 | 319 | 和我签订契约成为魔法少女吧 = 九次九日九重色(晓美焰魔万受无疆, 鹿目圆神攻德无量) 320 | 即使我死了_被钉在棺材里_也要用腐朽的声音喊出_冬马和纱是小三 = 九次九日九重色(和我签订契约成为魔法少女吧, 蕾米莉亚_威严满满_斯卡雷特_抱头蹲防) 321 | 322 | if 即使我死了_被钉在棺材里_也要用腐朽的声音喊出_冬马和纱是小三 >= 10: 323 | 蕾米莉亚_威严满满_斯卡雷特_抱头蹲防 = 1 324 | 即使我死了_被钉在棺材里_也要用腐朽的声音喊出_冬马和纱是小三 -= 10 325 | else: 326 | 蕾米莉亚_威严满满_斯卡雷特_抱头蹲防 = 0 327 | 328 | result.insert(0, 即使我死了_被钉在棺材里_也要用腐朽的声音喊出_冬马和纱是小三) 329 | 330 | if 蕾米莉亚_威严满满_斯卡雷特_抱头蹲防 == 1: 331 | result.insert(0, 蕾米莉亚_威严满满_斯卡雷特_抱头蹲防) 332 | 333 | result_str = '' 334 | for d in result: 335 | result_str += str(d) 336 | result_int = int(result_str) 337 | return result_int 338 | 339 | #实现乘法 340 | def c_春色春恋春熙风(北部玄驹, 我老婆): 341 | if 我老婆 == 0: 342 | 北部玄驹我老婆 = 0 343 | return 北部玄驹我老婆 344 | 345 | else: 346 | 北部玄驹我老婆 = 北部玄驹 347 | for i in range(我老婆-1): 348 | 北部玄驹我老婆 = 天色天歌天籁音(北部玄驹,北部玄驹我老婆) 349 | return 北部玄驹我老婆 350 | 351 | 352 | #创建数组 353 | def 雪色雪花雪之痕(): 354 | 你说的对但是原神是由米哈游自主研发的一款全新开放世界冒险游戏游戏发生在一个被称作提瓦特的幻想世界在这里被神选中的人将被授予神之眼导引元素之力你将扮演一位名为旅行者的神秘角色在自由的旅行中邂逅性格各异能力独特的同伴们和他们一起击败强敌找回失散的亲人同时逐步发掘原神的真相 = [] 355 | 晕女士们先生们大家好今天我很荣幸作为一个青藏高原的孩蜇能来到黏合国讲我喝动物朋友们的故射 = 0 356 | while(晕女士们先生们大家好今天我很荣幸作为一个青藏高原的孩蜇能来到黏合国讲我喝动物朋友们的故射 <= 8): 357 | 晕女士们先生们大家好今天我很荣幸作为一个青藏高原的孩蜇能来到黏合国讲我喝动物朋友们的故射 = 天色天歌天籁音(晕女士们先生们大家好今天我很荣幸作为一个青藏高原的孩蜇能来到黏合国讲我喝动物朋友们的故射, 1) 358 | 你说的对但是原神是由米哈游自主研发的一款全新开放世界冒险游戏游戏发生在一个被称作提瓦特的幻想世界在这里被神选中的人将被授予神之眼导引元素之力你将扮演一位名为旅行者的神秘角色在自由的旅行中邂逅性格各异能力独特的同伴们和他们一起击败强敌找回失散的亲人同时逐步发掘原神的真相.append(晕女士们先生们大家好今天我很荣幸作为一个青藏高原的孩蜇能来到黏合国讲我喝动物朋友们的故射) 359 | 你说的对但是原神是由米哈游自主研发的一款全新开放世界冒险游戏游戏发生在一个被称作提瓦特的幻想世界在这里被神选中的人将被授予神之眼导引元素之力你将扮演一位名为旅行者的神秘角色在自由的旅行中邂逅性格各异能力独特的同伴们和他们一起击败强敌找回失散的亲人同时逐步发掘原神的真相 = 星光咖啡馆与死神之蝶(你说的对但是原神是由米哈游自主研发的一款全新开放世界冒险游戏游戏发生在一个被称作提瓦特的幻想世界在这里被神选中的人将被授予神之眼导引元素之力你将扮演一位名为旅行者的神秘角色在自由的旅行中邂逅性格各异能力独特的同伴们和他们一起击败强敌找回失散的亲人同时逐步发掘原神的真相) 360 | return 你说的对但是原神是由米哈游自主研发的一款全新开放世界冒险游戏游戏发生在一个被称作提瓦特的幻想世界在这里被神选中的人将被授予神之眼导引元素之力你将扮演一位名为旅行者的神秘角色在自由的旅行中邂逅性格各异能力独特的同伴们和他们一起击败强敌找回失散的亲人同时逐步发掘原神的真相 361 | 362 | 肯德基疯狂星期四V我50谢谢 = 雪色雪花雪之痕() 363 | 肯德基疯狂星期四V我50谢谢 = 死神咖啡馆与星光之蝶(肯德基疯狂星期四V我50谢谢) 364 | for 青春猪头大公鸡会不会摧毁兔女郎学姐小猫咪 in 肯德基疯狂星期四V我50谢谢: 365 | 私はとてもばかです = 1 366 | while (私はとてもばかです <= 青春猪头大公鸡会不会摧毁兔女郎学姐小猫咪): 367 | print(f'{青春猪头大公鸡会不会摧毁兔女郎学姐小猫咪}x{私はとてもばかです}={c_春色春恋春熙风(青春猪头大公鸡会不会摧毁兔女郎学姐小猫咪,私はとてもばかです)}', end='\t') 368 | 私はとてもばかです = 天色天歌天籁音(私はとてもばかです,1) 369 | print() --------------------------------------------------------------------------------