使用C++指针求1到100的累加和
发布网友
发布时间:2024-01-09 22:03
我来回答
共1个回答
热心网友
时间:2024-02-06 14:03
//#include "stdafx.h"//If the vc++6.0, with this line.
#include <iostream>
using namespace std;
int main(int argc,char *argv[]){
int i,n,*p;
for(n=0,p=&i,*p=1;*p<101;(*p)++)
n+=*p;
cout << "The result is " << n << endl;
return 0;
}
运行结果: