Tuesday, August 07, 2018

Wednesday, June 06, 2018

UVA 406 - Prime Cuts(solution)

To read problem (সমস্যা পড়তে ক্লিক কর) → uva 406 - Prime Cuts

To submit (সাবমিট করতে ক্লিক কর) → Submit(uva 406)

Solution:


Monday, February 12, 2018

কম্পিউটার প্রোগ্রামিং বই - সমস্যা ৬৮

                       সমস্যা - ৬৮ ( শব্দ গণনা ১ ) 


সমস্যা পড়তে ক্লিক কর   শব্দ গণনা ১

সাবমিট করতে ক্লিক কর   সাবমিট ( শব্দ গণনা ১ )


Solution:

#include<string>
#include<iostream>
#include<sstream>
using namespace std;

Friday, January 12, 2018

Starting with PYTHON!


Let's become a programmer with Python!
 

At the very first, we are going to print ' Hello World ' which is the first code of every programmer.

Now, Open your Python Interpreter on your computer.

Here is a sample line of code that can be executed in Python:

print ("Hello, World!")


You can just as easily store a string as a variable and then print it to stdout:
my_string = "Hello, World!"
print(my_string)
#Happy_Coding :)