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
routers = dict( | |
# base router | |
BASE=dict(default_application='url_shortner'), | |
url_shortner=dict( | |
default_controller='default', | |
default_function='index', | |
# function list of default controller, to distinguish between | |
# args and function name | |
functions=['index', 'user', 'download', 'call', |
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
import java.util.Scanner; | |
public class convert { | |
public static void main(String [] args){ | |
int i,j,count; | |
String[] ab; | |
ab = new String[10000000]; | |
Scanner in=new Scanner (System.in); |
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
import java.util.Scanner; | |
public class theatre { | |
public static void main(String[] args) { | |
double n,m,a; | |
Scanner in = new Scanner(System.in); | |
n = in.nextDouble(); // accept width of theatre square | |
m = in.nextDouble(); //accept length of theatre square |