#include<bits/stdc++.h> using namespace std; int main() { ofstream fout("seat.out"); // 打开输出文件,写入答案 int a; for(int i=0;;i++) { a++; for(int j=0;j<a;j++) fout<<"中"; fout<<"间的"<<endl; } return 0; }

1 条评论

  • @ 2025-11-2 16:14:22
    #include<bits/stdc++.h> 
    using namespace std; 
    int main() { 
    ofstream fout("seat.out");
    int a; 
    for(int i=0;;i++) { 
    a++; 
    for(int j=0;j<a;j++) fout<<"中"; 
    fout<<"间的"<<endl; 
    } 
    return 0; 
    }
    
    • 1