标签:c++
#include <iostream> using namespace std; int main() { for(int i;cin>>i;cout << i<< endl); return 0; }
在变量定义上,c++与c不同,c语言的变量必须要先定义后使用,而且要在语句块(scope)最前面定义
c++则可以在使用的时候定义.
c++的for循环居然可以精简成这样!
原文地址:http://cpper.blog.51cto.com/368359/1961164