add LC2 skeleton files for 7 ACM I/O patterns

This commit is contained in:
2026-06-06 17:31:07 +08:00
parent ec1fd8e96a
commit c19e666832
8 changed files with 451 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
//go:build ignore
// 两数之和:读入两个整数,输出它们的和
// 输入示例:3 5
// 输出示例:8
package main
import "fmt"
func main() {
// TODO: 读入两个整数 a, b
a, b := 0, 0
fmt.Println(a + b)
}