Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.66K
~72.1K People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for Luka_1

#include<iostream> #include<string> using namespace std; main() string s="GCV"; int i,n; char c; cin>>s; if(s.size()!=5||s[2]!='-'|| s[0]<'A'||s[0]>'H'|| s[3]<'A'||s[3]>'H'|| s[1]<'1'||s[1]>'8'|| s[4]<'1'||s[4]>'8')cout<<"ERROR"; else if(abs((s[0]-s[3])*(s[1]-s[4]))==2)cout<<"YES"; else cout<<"NO";

Member Avatar for Adina_2
0
72K

The End.