fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. string n,m; // your code goes here
  6. cin>>n>>m;
  7. if(n=="整数"&&m=="奇数,偶数")
  8. cout<<"是偶数";
  9. else
  10. cout<<"是奇数或是偶数";
  11.  
  12.  
  13.  
  14. return 0;
  15. }
Success #stdin #stdout 0.01s 5280KB
stdin
340
stdout
是奇数或是偶数