2 条题解

  • 1
    @ 2024-3-24 8:53:43
    using namespace std;
    bool zs(long long x){
    	if(x<2) return false;
    	for(long long i=2;i*i<=x;i++){
    		if(x%i==0){
    			return false;
    		}
    	}
    	return true;
    }
    int main() {
    	cout<<zs(2147483647);
    	return 0;
    }
    
    
    • 0
      @ 2024-3-25 20:09:31
      #include<bits/stdc++.h>
      using namespace std;
      int main()  {
      	int a,b,c;//定义3个分别叫a,b,c的变量
      	cin>>a>>b>>c;//cin表示输入,本行表示输入a,b,c
      	cout<<b;//表示输出b
      	return 0;
      }
      
      • 1

      信息

      ID
      3
      时间
      1000ms
      内存
      128MiB
      难度
      1
      标签
      递交数
      73
      已通过
      48
      上传者