首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴徐二爷的代码贴全部
#include <iostream>
using namespace std;

int function(int n){
    int m;
    if(n<0){
    cout<<"输入错误"<<endl;
    return 0;
}
else if(n==1){
    m=1;
 }
......................
阅读全部 | 2019年11月7日 12:25
1
徐二爷