由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 请教for_each
相关主题
a question about bitwise operationcompare double to float
a simple question for C++ class[合集] C++问题(copy constructor)
请问一个exception题目问一个简单的C++问题
两个继承问题一个指向指针的指针的引用?
为什么我看不懂下面的code,是不是水平还不够?问个char*的问题
C++疑问0 < -1 ? A c++ question
two c++ interview questions! (转载)数组弱问
请教一个作用域的问题[合集] 关于构造函数
相关话题的讨论汇总
话题: cout话题: int话题: element话题: endl话题: myfunction
进入Programming版参与讨论
1 (共1页)
x******a
发帖数: 6336
1
为什么下面这个程序输出的时候多一个1出来:
enter the number of element
5
4 0 3 0 4 1
the maximum element is 4
0 0 3 4 4
程序在这
#include
#include
#include
using namespace std;
void myfunction(int i)
{
cout << i<<" ";
}
int main()
{
int N;
cout<< "enter the number of element" < cin>> N;
int a[N];
srand((unsigned) time(0));
for(int i=0; i a[i]=rand()%N;
cout< cout<< endl;
cout<<"the maximum element is " << *max_element(a, a+N)< sort(a, a+N);
for(int i=0; i cout< cout< }
J*****n
发帖数: 4859
2
int a[N];
现在这样都行了?for non constant N.
x******a
发帖数: 6336
3
No ideaLOL
是不是这样写不规范?
编译的时候没有warning,也没有报错。。。

【在 J*****n 的大作中提到】
: int a[N];
: 现在这样都行了?for non constant N.

y***d
发帖数: 2330
4
cout< ^^^^

【在 x******a 的大作中提到】
: 为什么下面这个程序输出的时候多一个1出来:
: enter the number of element
: 5
: 4 0 3 0 4 1
: the maximum element is 4
: 0 0 3 4 4
: 程序在这
: #include
: #include
: #include

x******a
发帖数: 6336
5
THank you ylsdd,
this solved the problem.

【在 y***d 的大作中提到】
: cout<: ^^^^
h*******s
发帖数: 8454
6
这货应该c++标准里没有吧,我印象中还挺有争议要不要加到11里面来着,后来应该还
是没加,不知道为啥,但是c99里面就有这个了,可变长度数组么,不知道实现上需要
啥overhead

【在 J*****n 的大作中提到】
: int a[N];
: 现在这样都行了?for non constant N.

h*c
发帖数: 1859
7
c99是有的
C11是optional的了,不强制。

【在 h*******s 的大作中提到】
: 这货应该c++标准里没有吧,我印象中还挺有争议要不要加到11里面来着,后来应该还
: 是没加,不知道为啥,但是c99里面就有这个了,可变长度数组么,不知道实现上需要
: 啥overhead

1 (共1页)
进入Programming版参与讨论
相关主题
[合集] 关于构造函数为什么我看不懂下面的code,是不是水平还不够?
C++菜问: 怎么这样也可以?C++疑问
C++ 初学者请教一个 iostream 的问题two c++ interview questions! (转载)
c++之极弱问请教一个作用域的问题
a question about bitwise operationcompare double to float
a simple question for C++ class[合集] C++问题(copy constructor)
请问一个exception题目问一个简单的C++问题
两个继承问题一个指向指针的指针的引用?
相关话题的讨论汇总
话题: cout话题: int话题: element话题: endl话题: myfunction