仅做学习记录。
成都创新互联公司是一家专注于成都做网站、成都网站建设与策划设计,洛龙网站建设哪家好?成都创新互联公司做网站,专注于网站建设十年,网设计领域的专业建站公司;建站业务涵盖:洛龙等地区。洛龙做网站价格咨询:18980820575C++ 核心代码模式class Solution {public:
void test(int a, int b) {cout<< a + b<< endl;
}
};
ACM模式#includeusing namespace std;
class Solution {public:
void test(int a, int b) {cout<< a + b<< endl;
}
};
int main() {Solution s;
s.test(1, 2);
return 0;
}
JAVA
核心代码模式class Solution {public int test(int a, int b) {return a + b;
}
}
ACM模式class Solution {public int test(int a, int b) {return a + b;
}
}
public class Main {public static void main(String[] args) {Solution s = new Solution();
System.out.println(s.test(1, 2));
}
}
Python
核心代码模式class Solution(object):
def test(self):
# 求解答案
ans = -1
return ans
ACM模式class Solution(object):
def test(self):
h, n = map(int, input().split()) # 单行输入(多个数空格分开)
s = int(input()) # 单行输入(单个数)
# a, b, c, d = (int(input()) for i in range(4)) # 多行输入(每行单个数)
for _ in range(n):
t, e, h = map(int, input().split())
# 求解答案
ans = -1
return ans
if __name__ == "__main__":
s = Solution()
print(s.test())
输入:
20 4
10
5 4 9
9 3 2
12 6 10
13 1 1
另:python的一些输入语法
# 矩阵输入
matrix = []
n = int(input())
for i in range(n):
vector = list(map(int, input().split(' ')))
matrix.append(vector)
print(matrix)
# 初始化矩阵
res = [[0 for i in range(m)] for j in range(n)]
你是否还在寻找稳定的海外服务器提供商?创新互联www.cdcxhl.cn海外机房具备T级流量清洗系统配攻击溯源,准确流量调度确保服务器高可用性,企业级服务器适合批量采购,新人活动首月15元起,快前往官网查看详情吧