fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a;
  6. int b;
  7. cin>>a;
  8. if(a%3>0)
  9. cout<<"成功";
  10. else
  11. cout<<"失败";
  12. return 0;
  13. }
Success #stdin #stdout 0.01s 5272KB
stdin
Standard input is empty
stdout
失败