fork download
  1. #include <iostream>
  2. #include <set>
  3. #include <string>
  4. using namespace std;
  5.  
  6. int main() {
  7. // your code goes here
  8.  
  9. set<string> s = {
  10. "Flistid","Fcoding","Fspid","Fsp_uid","Fsp_acno","Fsp_name","Frec_banklist","Fproduct","Fscene_settle","Fbusiness_type","Fsub_business_type","Fbusiness_desc","Fbusiness_flag","Fsource_id","Fpay_type","Ftrade_type","Fbuy_acno","Fbuy_uin","Fbuy_uid","Fbuy_name","Fcard_bank_type","Fcard_curtype","Fprice","Fprice_curtype","Fcarriage","Fpaynum","Ffact","Fexchange_listid","Fexchange_rate","Fbank_type","Fbank_curtype","Fbank_paynum","Fvoucher_list","Fcash","Ftoken","Fgwq_listid","Ftrade_state","Flstate","Fcreate_time_spid","Fcreate_time","Fbargain_time","Fpay_time","Facc_time","Frefund_state","Ftotal_payout","Ftotal_plan_payout","Freq_refund_time","Frefund_time","Frefund_time_acc","Fappeal_sign","Flock_no","Fip","Fmemo","Fexplain","Fmodify_time","Fadjust_flag","Fchannel_id","Fstandby1","Fstandby2","Fstandby4","Fstandby5","Fstandby9","Fstandby10","Fstandby11","Fstandby12","Fsys_time","Frefund_type","Freq_id","Flock_time","Flock_busi","Fappid","Fappid_openid","Fsp_attach","Fdevice_info","Fsub_spid","Fqr_code","Fclose_flag","Fcash_refund_fee","Fcash_plan_refund_fee","Ftoken_refund_fee","Ftoken_acno","Facc_curtype","Fcb_flag","Fwx_trans_id","Fraw_sp_billno","Frela_listid1","Frela_listid2","Finvoke_source","Fsettle_curtype","Fsettle_num","Fsettle_rate","Fbind_serialno","Fpay_curtype","Fxchg","Fxchg_price_num","Fxchg_pay_num","Fsign"
  11. };
  12.  
  13. auto ite = s.begin();
  14. for (;ite != s.end(); ++ite)
  15. {
  16. cout << *ite << endl;
  17. }
  18.  
  19.  
  20. return 0;
  21. }
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
Facc_curtype
Facc_time
Fadjust_flag
Fappeal_sign
Fappid
Fappid_openid
Fbank_curtype
Fbank_paynum
Fbank_type
Fbargain_time
Fbind_serialno
Fbusiness_desc
Fbusiness_flag
Fbusiness_type
Fbuy_acno
Fbuy_name
Fbuy_uid
Fbuy_uin
Fcard_bank_type
Fcard_curtype
Fcarriage
Fcash
Fcash_plan_refund_fee
Fcash_refund_fee
Fcb_flag
Fchannel_id
Fclose_flag
Fcoding
Fcreate_time
Fcreate_time_spid
Fdevice_info
Fexchange_listid
Fexchange_rate
Fexplain
Ffact
Fgwq_listid
Finvoke_source
Fip
Flistid
Flock_busi
Flock_no
Flock_time
Flstate
Fmemo
Fmodify_time
Fpay_curtype
Fpay_time
Fpay_type
Fpaynum
Fprice
Fprice_curtype
Fproduct
Fqr_code
Fraw_sp_billno
Frec_banklist
Frefund_state
Frefund_time
Frefund_time_acc
Frefund_type
Frela_listid1
Frela_listid2
Freq_id
Freq_refund_time
Fscene_settle
Fsettle_curtype
Fsettle_num
Fsettle_rate
Fsign
Fsource_id
Fsp_acno
Fsp_attach
Fsp_name
Fsp_uid
Fspid
Fstandby1
Fstandby10
Fstandby11
Fstandby12
Fstandby2
Fstandby4
Fstandby5
Fstandby9
Fsub_business_type
Fsub_spid
Fsys_time
Ftoken
Ftoken_acno
Ftoken_refund_fee
Ftotal_payout
Ftotal_plan_payout
Ftrade_state
Ftrade_type
Fvoucher_list
Fwx_trans_id
Fxchg
Fxchg_pay_num
Fxchg_price_num