字符串处理
是三水不是泗水
只是个笔记本
展开
-
1071 Speech Patterns (25 分)
#include<bits/stdc++.h>using namespace std;int main(){ #ifndef ONLINE_JUDGE freopen("in.txt","r",stdin); #endif string s; getline(cin,s); transform(s.begin(),s.end(),s.begin(),::tolowe...原创 2018-10-23 21:42:29 · 194 阅读 · 0 评论 -
1073 Scientific Notation (20 分)
#include<bits/stdc++.h>using namespace std;int main(){ string t; cin>>t; int flag=0; if(t[0]=='-'){ flag=1; } string s,ss; int sign=0; for(int i=1;i<t.length();i++){ i...原创 2018-10-26 16:34:28 · 345 阅读 · 0 评论 -
1010 Radix
#include<bits/stdc++.h> using namespace std;typedef long long ll;ll convert(string t,ll r){ ll ans=0; for(ll i=0;i<t.length();i++){ if(isdigit(t[i])){ ans=ans*r+t[i]-'0'; }else{...原创 2018-10-24 22:04:23 · 151 阅读 · 0 评论 -
1140 Look-and-say Sequence
#include<iostream>#include<string>#include<vector>using namespace std;int main(){ vector<string> a; string d; int n; cin>>d>>n; string t; ...原创 2018-08-02 19:53:48 · 164 阅读 · 0 评论