Category: Programming Problem Solving

11
May
2016

Problem 3 from 52 programming problems book

1st approach: #include<iostream> #include<cstdio> using namespace std; int main() { int counts=0; for(int i=1000; i>=1; i–) {…

08
May
2016

Problem 1 from 52 programming problems book

  http://ideone.com/ItvUGS

08
May
2016

Problem 2 from 52 programming problems book

I was using code blocks but it was giving me compiler error for c++11 was not on…

06
Mar
2016

UVA Solution 11547 – Automatic Answer

Editorial: Actually I was facing the problem how can make the second digit from the left that…

06
Mar
2016

UVA solution 11455 – Behold my quadrangle

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…

30
Dec
2015

Pattern Printing:Full pyramid in C

  #include<stdio.h> int main() { int i,j,n; printf(“Enter value of n rows: “); scanf(“%d”,&n); for(i=1; i<=n; i++)…