5 条题解

  • 4
    @ 2022-9-20 13:54:58
    由题目可知这是一道纯水题

    那桉就废话一下关于文件操作—— 其实平时像我们accode网站。 以及 洛谷 AcWing这些网站。 你在刷题的时候是用不到freopen的。 ——但是。 CSP(CCF CSP非专业级别的软件能力认证)的复赛。上机写题的时候是需要用到文件操作的。 所以说 文件操作还是很重要的!!! 还没有学会怎么使用的小伙伴。 跟我一起摆烂罢 啊不是。肯定是要学会的对不对。


    上代码——

    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    	freopen("aplusb.in","r",stdin);
    	freopen("aplusb.out","w",stdout);
    	int a,b;
    	cin>>a>>b;
    	cout<<a+b<<endl;
    }
    

    本题解yc桉。有帮助就点个赞罢。

    • @ 2022-10-6 13:24:12

      TM复杂

  • 1
    @ 2023-9-4 20:21:27
    #include<iostream>
    using namespace std;
    int main(){
    	freopen("aplusb.in","r",stdin);
    	freopen("aplusb.out","w",stdout);
    	int a,b;
    	cin>>a>>b;
    	cout<<a+b;
    	return 0;
    }
    
    • 1
      @ 2022-10-1 9:26:02

      文件操作基本格式:

      freopen("文件名.in","r",stdin);
      freopen("文件名.out","w",stdout);
      

      完整代码:

      #include<bits/stdc++.h>//万能头文件
      
      using namespace std;
      
      int main(){
      	freopen("aplusb.in","r",stdin);
      	freopen("aplusb.out","w",stdout);//文件操作输入输出
      	int a,b;
      	cin>>a>>b;
      	cout<<a+b;//主代码
          return 0//结束撒花🎉️ 🎉️ 🎉️ 
      }
      

      文件操作对于CSP的复赛和NOI来讲的话,是一个很重要的部分,所以要去参加比赛的同学,一定要学会文件操作。

      • 0
        @ 2024-3-1 19:38:43
        #include<iostream>
        using namespace std;
        int main(){
        	freopen("aplusb.in","r",stdin);
        	freopen("aplusb.out","w",stdout);
        	int a,b;
        	cin>>a>>b;
        	cout<<a+b;
        	return 0;
        }
        
        • 0
          @ 2023-4-21 13:56:43
          using namespace std;
          int n,m;
          int len[105];
          int a[105],b[105],c[105];
          int main(){
          	cin>>n;
          	for(int i=1;i<=n;i++){
          		cin>>len[i];
          	}
          	cin>>m;
          	for(int i=1;i<=m;i++){
          		cin>>a[i]>>b[i]>>c[i];
          	}
          	for(int i=1;i<=m;i++){
          		for(int j=a[i];j<=b[i];j++){
          			len[j]+=c[i];
          		}
          	}
          	for(int i=1;i<=n;i++){
          		cout<<len[i]<<" ";
          	}
          	return 0;
          }
          
          • 1

          信息

          ID
          476
          时间
          1000ms
          内存
          256MiB
          难度
          6
          标签
          (无)
          递交数
          206
          已通过
          63
          上传者