This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Nasim */ | |
#include<bits/stdc++.h> | |
using namespace std; | |
class node | |
{ | |
public: | |
int data; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Nasim */ | |
#include<bits/stdc++.h> | |
using namespace std; | |
int main() | |
{ | |
int day,month,year; | |
int day1,month1,year1; | |
int n,k=0,age; | |
cin>>n; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Nasim */ | |
#include<bits/stdc++.h> | |
using namespace std; | |
int main() | |
{ | |
long long int n; | |
char str[150]; | |
while(1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Nasim */ | |
#include<iostream> | |
#include<cstdlib> | |
using namespace std; | |
class node | |
{ | |
public: | |
int data; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Nasim */ | |
#include<bits/stdc++.h> | |
#include<iostream> | |
#include<stack> | |
using namespace std; | |
void Balance(char *s,int n) | |
{ | |
stack <char> c; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Nasim */ | |
#include<iostream> | |
using namespace std; | |
int arr[10]; | |
int Front = -1,Tail = -1 ,numOfElements = 0; | |
bool isEmpty() | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Nasim */ | |
#include<iostream> | |
using namespace std; | |
class Queue | |
{ | |
public: | |
int data; | |
Queue *next; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
First open up Terminal and run the following commands serially- | |
1. wget 'https://github.com/ugcoder/avro/releases/download/v2.0/avro_2.0-1_all.deb' | |
2. sudo dpkg -i avro_2.0-1_all.deb | |
now if you see any dependency error, then also run the third command | |
3. sudo apt-get install -fy | |
Avro should be installed on your system by now. Now go to Settings - Language Support and check whether ibus is selected as the default input method. Now from Terminal restart ibus by typing ibus restart. | |
Now again go to Settings - Keyboard - Text Entry and add Avro as the input source. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
First open up Terminal and run the following commands serially- | |
1. wget 'https://github.com/ugcoder/avro/releases/download/v2.0/avro_2.0-1_all.deb' | |
2. sudo dpkg -i avro_2.0-1_all.deb | |
now if you see any dependency error, then also run the third command | |
3. sudo apt-get install -fy | |
Avro should be installed on your system by now. Now go to Settings - Language Support and check whether ibus is selected as the default input method. Now from Terminal restart ibus by typing ibus restart. | |
Now again go to Settings - Keyboard - Text Entry and add Avro as the input source. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
@author Nasimuzzaman Nasim | |
*/ | |
import javax.swing.JOptionPane; | |
import java.text.DecimalFormat; | |
public class Main | |
{ | |
public static void main(String args[]) |
OlderNewer