Redian新闻
>
COSTCO TrueEarnings Credit Card 收到$75 CB offer要不要考虑开卡呢?
avatar
COSTCO TrueEarnings Credit Card 收到$75 CB offer要不要考虑开卡呢?# Money - 海外理财
H*e
1
string = '"abc",
打印所有长度为6的字符可以重复的string permutation(但是输出不能重复)
也就是打印
aaaaaa
aaaaab
aaaaac
aaabac
....
我觉得很费解。
avatar
g*0
2
一直是COSTCO的member,但是以前信用不好,就一直付着55刀的costco member年费.今年
3月又要renew了,在考虑到底是否申请TrueEarning American Express,又正好收到
email offer说,头三个月花费满1000刀返75美金.现在信用分数大概720左右....要不要
申请? 要不要申请??
avatar
c*e
3
This looks nasty, but it should work.
char* s=string.c_str();
for(int i1=0;i1<3;i1++) {
for(int i2=0;i2<3;i2++) {
for(int i3=0;i3<3;i3++) {
for(int i4=0;i4<3;i4++) {
for(int i5=0;i5<3;i5++) {
for(int i6=0;i6<3;i6++) {
cout << s[i1] << s[i2] << s[i3] << s[i4] << s[i5] << s[i6] << endl;
}
}
}
}
}
}
avatar
l*p
4
如果经常去Costo的话,还是不错的吧。是邮件吗?
avatar
H*e
5
i guess it is asking for a systematic method...

【在 c**********e 的大作中提到】
: This looks nasty, but it should work.
: char* s=string.c_str();
: for(int i1=0;i1<3;i1++) {
: for(int i2=0;i2<3;i2++) {
: for(int i3=0;i3<3;i3++) {
: for(int i4=0;i4<3;i4++) {
: for(int i5=0;i5<3;i5++) {
: for(int i6=0;i6<3;i6++) {
: cout << s[i1] << s[i2] << s[i3] << s[i4] << s[i5] << s[i6] << endl;
: }

avatar
e*n
6
最近不是一直在讨论说costco amex没有什么好处,才75就一个hard pull很不值。

【在 g********0 的大作中提到】
: 一直是COSTCO的member,但是以前信用不好,就一直付着55刀的costco member年费.今年
: 3月又要renew了,在考虑到底是否申请TrueEarning American Express,又正好收到
: email offer说,头三个月花费满1000刀返75美金.现在信用分数大概720左右....要不要
: 申请? 要不要申请??

avatar
c*e
7
First, create a c-str which has no replicates. The length is N. If we want
to get new strings with length M, it is a simple replication. It can be done
recursively for M. The total number of rows is N^M.

【在 H***e 的大作中提到】
: i guess it is asking for a systematic method...
avatar
g*0
8
是Email 来的

【在 l*****p 的大作中提到】
: 如果经常去Costo的话,还是不错的吧。是邮件吗?
avatar
s*n
9
Don't need so many for loops. Only 2 while loop will work.
Go to see 编程之美
avatar
M*A
10
你就是trueearnings了也得付55刀的costco会员费

【在 g********0 的大作中提到】
: 一直是COSTCO的member,但是以前信用不好,就一直付着55刀的costco member年费.今年
: 3月又要renew了,在考虑到底是否申请TrueEarning American Express,又正好收到
: email offer说,头三个月花费满1000刀返75美金.现在信用分数大概720左右....要不要
: 申请? 要不要申请??

avatar
H*e
11
谢谢
全称叫什么名字呢

【在 s******n 的大作中提到】
: Don't need so many for loops. Only 2 while loop will work.
: Go to see 编程之美

avatar
c*4
12
在那里加油的话挺好的, 另外有这卡的话下次去的时候不用单独带membership card了,
直接扫这个卡就可以

【在 g********0 的大作中提到】
: 一直是COSTCO的member,但是以前信用不好,就一直付着55刀的costco member年费.今年
: 3月又要renew了,在考虑到底是否申请TrueEarning American Express,又正好收到
: email offer说,头三个月花费满1000刀返75美金.现在信用分数大概720左右....要不要
: 申请? 要不要申请??

avatar
c*e
13
Use two loops:
for(int i=0;i<729;i++) {
for(int j=0;j<6;j++) {
m = k % 3; k = k/3;
cout << s[m];
}
cout << end;
}

【在 s******n 的大作中提到】
: Don't need so many for loops. Only 2 while loop will work.
: Go to see 编程之美

avatar
e*n
14
costco会员任何amex卡都可以加油。true earning卡是可以当membership卡用,当初我
就是为了这个方便神的卡。但是只能用一年,第二年membership卡号就变了,扫不了了
。所以说这个卡太鸡肋了。更糟糕的想退出costco会员都不行,会费自动charge到信用
卡,只能把卡关了。

了,

【在 c******4 的大作中提到】
: 在那里加油的话挺好的, 另外有这卡的话下次去的时候不用单独带membership card了,
: 直接扫这个卡就可以

avatar
c*e
15
Use one loop: (Hehe, nasty again)
for(int i=0;i<3^6;i++) {
i1 = i/243;
i2 = (i/81) % 3;
i3 = (i/27) % 3;
i4 = (i/9) % 3;
i5 = (i/3) % 3;
i6 = i % 3;
cout << s[i1] << s[i2] << s[i3] << s[i4] << s[i5] << s[i6] << endl;
}
avatar
M*k
16
我怎么没遇到这么麻烦的事儿。当然membership fee是不能省,所以这卡其实鸡肋。

【在 e******n 的大作中提到】
: costco会员任何amex卡都可以加油。true earning卡是可以当membership卡用,当初我
: 就是为了这个方便神的卡。但是只能用一年,第二年membership卡号就变了,扫不了了
: 。所以说这个卡太鸡肋了。更糟糕的想退出costco会员都不行,会费自动charge到信用
: 卡,只能把卡关了。
:
: 了,

avatar
c*e
17
This one can be generalized: To permut s[N], use two loops
for(int i=0;ifor(int j=0;jm = k % N; k = k/N;
cout << s[m];
}
cout << end;
}
avatar
l*p
18
你可以要求costco remove automatic charge membership fee to your credit card.

【在 e******n 的大作中提到】
: costco会员任何amex卡都可以加油。true earning卡是可以当membership卡用,当初我
: 就是为了这个方便神的卡。但是只能用一年,第二年membership卡号就变了,扫不了了
: 。所以说这个卡太鸡肋了。更糟糕的想退出costco会员都不行,会费自动charge到信用
: 卡,只能把卡关了。
:
: 了,

avatar
s*n
19
OK. I did not test your solution, but the solution offerred by MSRA still
seems clearer than yours.

【在 c**********e 的大作中提到】
: This one can be generalized: To permut s[N], use two loops
: for(int i=0;i: for(int j=0;j: m = k % N; k = k/N;
: cout << s[m];
: }
: cout << end;
: }

avatar
e*n
20
这个不行的,term里写着是costco会员才没有年费。

card.

【在 l*****p 的大作中提到】
: 你可以要求costco remove automatic charge membership fee to your credit card.
avatar
c*e
21
Why not post the MSRA solution here?

【在 s******n 的大作中提到】
: OK. I did not test your solution, but the solution offerred by MSRA still
: seems clearer than yours.

avatar
g*0
22
吖...?? 原来就算申请了TruEarnings也还是要交$55的costco 会员年费噢....那还是
算了吧...~不打算考虑了
avatar
s*n
23
I am packing for moving, so I cannot find it. Just try from my rememberance
idea: same as phone pad interprete to word:
char phonePad[m][n]; // phone pad
int answer[t]; // index of char in the answers corresponding yo each
digits
int num[t]; // phone number to interprete
int k = t-1;
while(true){
print; // using phonePad
while(k>=0){
if( answer[k] answer[k]++;
break;
}
answer[k] = 0;
k--;
}
if(k<0) break;
}

【在 c**********e 的大作中提到】
: Why not post the MSRA solution here?
avatar
S*s
24
这卡原本就不免卡本身年费呀,除非你交了costco的年费。

【在 g********0 的大作中提到】
: 吖...?? 原来就算申请了TruEarnings也还是要交$55的costco 会员年费噢....那还是
: 算了吧...~不打算考虑了

avatar
q*x
25
就是abc三个字符可重复,输出所有组合。每个位置都有三个选择,相当于六位的三进
制数穷举。

【在 H***e 的大作中提到】
: string = '"abc",
: 打印所有长度为6的字符可以重复的string permutation(但是输出不能重复)
: 也就是打印
: aaaaaa
: aaaaab
: aaaaac
: aaabac
: ....
: 我觉得很费解。

avatar
a*e
26
我觉得这卡还不错。
一是不用再带costco会员卡了,不然钱包装不下。
二是这卡本身加油是3%,在任意独立加油站,不仅仅是costco自己的油站。
三是旅行也有2%。
四是这是AMEX自己的卡,所以什么车保、质保都挺好的。
avatar
f*3
27
你renew会员卡号会变?

【在 e******n 的大作中提到】
: costco会员任何amex卡都可以加油。true earning卡是可以当membership卡用,当初我
: 就是为了这个方便神的卡。但是只能用一年,第二年membership卡号就变了,扫不了了
: 。所以说这个卡太鸡肋了。更糟糕的想退出costco会员都不行,会费自动charge到信用
: 卡,只能把卡关了。
:
: 了,

avatar
e*n
28
对,变了,在costco还是可以check out,但小二每次都说是old card,需要叫manager
来才行,不得不办个会员卡用,否则每次都浪费时间。

【在 f*******3 的大作中提到】
: 你renew会员卡号会变?
avatar
f*s
29
“一是不用再带costco会员卡了,不然钱包装不下”,这也能成为用卡理由啊,带张专
门加油,且还只有3%回报,然后还要想着travel才是2%,其他1%的卡,我还是扔屋里比
较好

【在 a******e 的大作中提到】
: 我觉得这卡还不错。
: 一是不用再带costco会员卡了,不然钱包装不下。
: 二是这卡本身加油是3%,在任意独立加油站,不仅仅是costco自己的油站。
: 三是旅行也有2%。
: 四是这是AMEX自己的卡,所以什么车保、质保都挺好的。

avatar
e*i
30
you can print the barcode and tape it to any cc. :P

【在 f*******s 的大作中提到】
: “一是不用再带costco会员卡了,不然钱包装不下”,这也能成为用卡理由啊,带张专
: 门加油,且还只有3%回报,然后还要想着travel才是2%,其他1%的卡,我还是扔屋里比
: 较好

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。