摘要: #include<iostream> #include<string.h> using namespace std; int main(){ bool odd = true; char c; while(c = getchar()){ if(c=='"'){printf("%s",odd?"“":" 阅读全文
posted @ 2021-11-02 16:39 智人心 阅读(51) 评论(0) 推荐(0)
摘要: #include<iostream> #include<string.h> using namespace std; int main(){ char s[8],buf[20]; int abc,de,x,y,z,count = 0; bool ok; scanf("%s",s); for(abc= 阅读全文
posted @ 2021-11-02 16:06 智人心 阅读(65) 评论(0) 推荐(0)
摘要: #include<iostream> #define maxn 20 int a[maxn][maxn]; #include<string.h> using namespace std; int main(){ int x,y,tot = 0,n; scanf("%d",&n); tot = a[x 阅读全文
posted @ 2021-11-02 15:51 智人心 阅读(42) 评论(0) 推荐(0)
摘要: #include<iostream> #include<string.h> #define maxn 1005 using namespace std; int a[maxn]; int main(){ int n,k,first = 1; memset(a,0,sizeof(a)); scanf( 阅读全文
posted @ 2021-11-02 15:51 智人心 阅读(51) 评论(0) 推荐(0)