Category: Programming Problem Solving
1st approach: #include<iostream> #include<cstdio> using namespace std; int main() { int counts=0; for(int i=1000; i>=1; i–) {…
http://ideone.com/ItvUGS
I was using code blocks but it was giving me compiler error for c++11 was not on…
Editorial: Actually I was facing the problem how can make the second digit from the left that…
Editorial: we need to read those : https://en.wikipedia.org/wiki/Quadrilateral https://www.mathsisfun.com/quadrilaterals.html And one thing to be remebered that to…
#include<stdio.h> int main() { int i,j,n; printf(“Enter value of n rows: “); scanf(“%d”,&n); for(i=1; i<=n; i++)…
Recent Comments