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
/*tag name,class,id,name*/ | |
div,.res,#res,div[name="res"]{ | |
color: blue; | |
font-size: 1.2em; | |
} |
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
#include <stdio.h> | |
#include <stdlib.h> | |
int main() | |
{ | |
//print my title | |
printf("*************************************************"); | |
printf("\t\t\t\t*"); | |
printf("\t\t成績計算系統<v2>"); | |
printf("\t\t*\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
import java.util.*; | |
public class main{ | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
int teams = input.nextInt(); | |
while(input.hasNext()) { | |
for(int i=1;i<=teams;i++) { | |
int nums = input.nextInt(); | |
int number[] = new int[nums]; | |
for(int j=0;j<nums;j++) { |
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.*; | |
public class main{ | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
while(input.hasNext()) { | |
long m = input.nextLong(); | |
long n = input.nextLong(); | |
System.out.println(Math.abs(m - 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
import java.util.*; | |
public class main{ | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
int count = 1; | |
while(input.hasNext()) { | |
long m = input.nextLong(); | |
System.out.printf("%4d.", count); | |
bangla(m); | |
if(m == 0) |
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.*; | |
public class main{ | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
int teams = input.nextInt(); | |
ArrayList<String> lists = new ArrayList<String>(); | |
ArrayList<String> res_list = new ArrayList<String>(); | |
while(input.hasNext()) { | |
String tmp = ""; | |
tmp = input.nextLine(); |
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.*; | |
public class main{ | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
while(input.hasNext()) { | |
String str = input.nextLine(); | |
str = str.toLowerCase(); | |
String result = ""; | |
String str2 = "`1234567890-=qwertyuiop[]\\asdfghjkl;'zxcvbnm,./"; | |
for(int i=0;i<str.length();i++) { |
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.*; | |
public class main{ | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
while(input.hasNext()) { | |
String str = input.next(); | |
String str2 = input.next(); | |
String result = ""; | |
ArrayList<String> res = new ArrayList<String>(); | |
for(int i=0;i<str.length();i++) { |
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.*; | |
public class main{ | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
boolean check = false; | |
while(input.hasNext()) { | |
String str = input.nextLine(); | |
for(int i=0;i<str.length();i++) { | |
if(str.charAt(i) == '\"') { | |
if(check) { |
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.*; | |
public class main{ | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
int num = input.nextInt(); | |
for(int j=1;j<=num;j++) { | |
int n = input.nextInt(); | |
double p = input.nextDouble(); | |
int i = input.nextInt(); | |
if(p == 0.000) { |