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
~2K People Reached
Favorite Forums
Favorite Tags
c++ x 3

2 Posted Topics

Member Avatar for Zay

#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

Member Avatar for Schol-R-LEA
0
193
Member Avatar for misalazeem

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 …

Member Avatar for arkoenig
0
2K

The End.