标签:include str scanf int contain div lin style using
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 60452 Accepted Submission(s):
28262
1 #include<iostream> 2 #include<stdio.h> 3 using namespace std; 4 int main() 5 { 6 int n; 7 while(scanf("%d",&n)!=EOF) 8 { 9 if(n==0||n==1) 10 cout<<"no"<<endl; 11 else if((n-2)%4==0) 12 cout<<"yes"<<endl; 13 else 14 cout<<"no"<<endl; 15 } 16 return 0; 17 }
标签:include str scanf int contain div lin style using
原文地址:http://www.cnblogs.com/97-ly/p/6824291.html