2019年10月20日

算法第三章上机实践报告

摘要: 一、上机题目解析 实践题目: 7-1 数字三角形 1 #include<iostream> 2 using namespace std; 3 4 5 int main(){ 6 int n;//n为三角形的行数 7 cin >> n; 8 int a[n][n],b[n][n]; 9 for(int 阅读全文

posted @ 2019-10-20 20:04 流星雨lxy 阅读(198) 评论(0) 推荐(0) 编辑

导航