用c++编写一个程序1+1+2+1+2+3+1+2+3+4+……n=s
时间: 2023-11-12 22:09:36 浏览: 125
vc.zip_4 3 2 1_earlierm8a_vc编写htons函数
以下是C++代码实现1+1+2+1+2+3+1+2+3+4+……n=s:
```
#include <iostream>
using namespace std;
int main() {
int n, s = 0, t = 0;
cout << "n:";
cin >> n;
for (int i = 1;
阅读全文