僅做學(xué)習(xí)記錄。
成都創(chuàng)新互聯(lián)公司是一家專注于成都做網(wǎng)站、成都網(wǎng)站建設(shè)與策劃設(shè)計,洛龍網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設(shè)十年,網(wǎng)設(shè)計領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:洛龍等地區(qū)。洛龍做網(wǎng)站價格咨詢: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()) # 單行輸入(多個數(shù)空格分開)
s = int(input()) # 單行輸入(單個數(shù))
# a, b, c, d = (int(input()) for i in range(4)) # 多行輸入(每行單個數(shù))
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)]
你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機(jī)房具備T級流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級服務(wù)器適合批量采購,新人活動首月15元起,快前往官網(wǎng)查看詳情吧