标签:turn pac code while cin pre color sys str
题目分析:
很普通的一道函数题,利用所给的条件,进行过程的模拟,构造出一个函数
代码:
#include<iostream> using namespace std; int fun(int m) { int sum = 0; if (m == 1) { return 1; } else{ sum = 1; while (--m) { sum = 2 * (sum + 1); } return sum; } } int main() { int n; while (cin >> n) { cout << fun(n) << endl; } system("pause"); return 0; }
标签:turn pac code while cin pre color sys str
原文地址:https://www.cnblogs.com/pcdl/p/12275368.html