摘要:
*270题 原题传送门:http://oj.tfls.net/p/270 题解: #include<bits/stdc++.h> using namespace std; int a,b,c,ans=0; int main(){ int n; cin>>n; for (int i=1; i<=n-2 阅读全文
摘要:
*272题 原题传送门:http://oj.tfls.net/p/272 题解:(遍历,60分) #include<bits/stdc++.h> using namespace std; long long allday;//总天数 long long pas;//已经过去 long long mo 阅读全文
摘要:
*266题 原题传送门:http://oj.tfls.net/p/266 题解: #include<bits/stdc++.h> using namespace std; int t;//高能数字 int sfch(int a){//是否有一位是高能数字,我用的递归,直到为零 if (a==0) r 阅读全文
摘要:
*271题 原题传送门:http://oj.tfls.net/p/271 题解: #include<bits/stdc++.h> using namespace std; int cf(int a,int b){//a的b次方 int c=a; for (int i=1; i<b; i++)//乘 阅读全文