a******f 发帖数: 9 | 1 #include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
class NestedInteger {
public:
NestedInteger(int i) : integer(i), isInt(true) {}
NestedInteger(vector l) : nestedList(l), isInt(false) {}
// Return true if this NestedInteger holds a single integer, rather than
a nested list.
bool isInteger() {
return isInt;
}
// R... 阅读全帖 |
|
c**a 发帖数: 316 | 2 第一种实现:
template
bool isint()
{
return typeof(T) == typeof(int);
}
第二种 实现
template
bool isint()
{
return false;
}
template<>
bool isint()
{
return true;
}
我觉得两种都对哇。
可是答案只有一种是对的。 |
|
o******6 发帖数: 538 | 3 ☆─────────────────────────────────────☆
zhongyimin (Miumiu) 于 (Mon Mar 2 18:49:24 2009) 提到:
%macro glimmixtoexcel;
data xyzzy;
set parms_out;
keep est Effect isint;
if substr(Effect, 1, 9)='Intercept' then isint=1;
else isint=0;
stars=' ';
/* two tailed tests */
if 1.645<=abs(tValue)<1.960 then stars='+';
if 1.960<=abs(tValue)<2.576 then stars='*';
if 2.576<=abs(tValue)<3.291 then stars='**';
if abs(tValue)>=3.291 then stars='***';
estima |
|