2017年3月7日
摘要: #include<iostream>using namespace std; int main(){ int l;//数组长度 cin>>l;//输入数组长度 int *p=new int[l];//定义动态数组 for(int i=0;i<l;i++)//输入数组的元素 cin>>p[i]; in 阅读全文
posted @ 2017-03-07 21:51 热血码农 阅读(62) 评论(0) 推荐(0)