提交不能同过
#include
using namespace std; int main(void) { //定义常量count const int count = 3; const int *p = &count; //打印count次字符串Hello C++ for(int i = 0;i < *p; i++){ cout << "Hello imooc" << endl; } return 0; } 不对吗,为什么不能通过啊#include
using namespace std; int main(void) { //定义常量count const int count = 3; const int *p = &count; //打印count次字符串Hello C++ for(int i = 0;i < *p; i++){ cout << "Hello imooc" << endl; } return 0; } 不对吗,为什么不能通过啊2015-05-30
举报