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 #55.0K
2 Posted Topics
#include <iostream> #include<cmath> using namespace std; int main() { int n=4; for ( int i=n;i>0;i--) { for (int space=i; space <n; space++) { cout<<" "; for (int j=1;j<=(2*i-1); j++) cout<<"*"; } cout<<endl; } return 0; } well i removed the errors but it outputs nothing.. do check ur logic again
Hello Everyone, I am writing chess code in C++ using a main cpp file and functions only.. SO basically am done with everything except the checkmate condition... the only conditions for checkmate i have checked are the movements that king can make.. but there might be other possibilities of saving …
The End.
misalazeem