Category: Programming

14
Jul
2017

OOP in C#

Calculator.cs namespace ConsoleApp6.Math { public class Calculator { public int Add(int a,int b) { return a +…

12
Jul
2017

C# Book Tips

jafhar19 months ago What is the best way to learn c# ? Ebooks or those four or…

02
Jul
2017

Hackerearth: COUNT NUMBERS

code: #include<bits/stdc++.h> using namespace std; int main() { int t,n,i,a; string s; cin>>t; while(t–) { int c=0;…

15
Jun
2017

Why Python is Not a Good OOP Language

Anonymous Answered Feb 22 I’ll go against popular opinion. I started with Python. I did all my…

11
Jun
2017

BigInteger in Java and C++

code: for c++ this link link or google search is good but i didn’t found any goood…

11
Jun
2017

Hackerearth Min-Max

code: #include<iostream> #include<cstdio> using namespace std; int main() { int n,flag=0; cin>>n; int a[n]; for(int i=0; i<n;…