标签:names 补充 bsp title page out ram stream pac
程序填空使得输出指定结果
#include <iostream> using namespace std; int main() { int x,y,z; x = 10; y = 20; z = 30; int * a[3] = { &x, &y,&z}; for(
// 在此处补充你的代码
p < a + 3; ++p) cout<< * (*p) << endl; return 0; }
无
10 20 30
标签:names 补充 bsp title page out ram stream pac
原文地址:http://www.cnblogs.com/w1992/p/7534543.html