This file contains 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 :Shohanur Rahaman | |
/// UVA 10591 | |
#include<stdio.h> | |
#include<math.h> | |
int main() | |
{ |
This file contains 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 : shohanur Rahaman | |
///Problem level : easy | |
/// URI : 1566 | |
#include<iostream> | |
#include<stdio.h> | |
#include<algorithm> | |
using namespace std; |
This file contains 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 : Shohan | |
// Uva : 11462 | |
#include<stdio.h> | |
#include<stdlib.h> | |
int compair(const void *i, const void *j); | |
int main() | |
{ |
This file contains 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: Shohanur Rahaman | |
// UVA : 11727 | |
#include<stdio.h> | |
void sort(int array_size,int array[]); | |
int salary[3]; | |
int main() | |
{ |
This file contains 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 : Shohanur Rahaman | |
//Problem level : Easy | |
//UVA : 11332 (Summing Digits) | |
#include <stdio.h> | |
int main() | |
{ | |
int t; | |
long long int n; |
This file contains 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
package notepad; | |
import javax.swing.*; | |
import java.awt.*; | |
import java.awt.event.*; | |
import java.util.Scanner; | |
import java.io.*; | |
public class Notepad extends JFrame implements ActionListener { | |
private TextArea textArea = new TextArea("", 0,0, TextArea.SCROLLBARS_VERTICAL_ONLY); |
This file contains 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 : Md.Shohanur Rahaman | |
import java.util.Scanner; | |
import java.lang.StringBuffer; | |
public class Main { | |
public static void main(String args[]){ | |
Scanner input=new Scanner(System.in); | |
String str; |
This file contains 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
/// URI OJ : 1267 (Pascal Library) | |
/// Author : Shohanur Rahaman | |
/// Probem Type : Ad-Hoc | |
#include<stdio.h> | |
int main() | |
{ | |
int i,j,tmp,ck; | |
int ara[500][500]; | |
int d,n; |
This file contains 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
#include<stdio.h> | |
int extends_euclid(int a,int b,int &x,int &y); | |
int main() | |
{ | |
int a,b,x,y; | |
int d; | |
while(scanf("%d %d",&a,&b)==2){ |
This file contains 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
#include<stdio.h> | |
int ara[1000005]; | |
int invara[1000005]; | |
int main() | |
{ | |
int n,i,count; | |
while(scanf("%d",&n)==1){ |