2 条题解

  • 1
    @ 2026-7-4 15:59:12
    #include <bits/stdc++.h>
    using namespace std;
    
    int main() {
    	int a;
    	cin >> a;
    	if (a >= 60) {
    		cout << "pass!";
    	} else {
    		cout << "sorry!";
    	}
    	return 0;
    }
    
    
    
    • 0
      @ 2026-6-1 21:55:49

      #include <bits/stdc++.h> using namespace std;

      int main() { int a; cin >> a; if (a>=60) { cout << "pass!"; } else { cout << "sorry!"; } return 0; }

      • 1

      信息

      ID
      30697
      时间
      1000ms
      内存
      256MiB
      难度
      8
      标签
      递交数
      11
      已通过
      9
      上传者