Search found 1 match

by M Noaman Akram
Sat Jul 16, 2011 5:26 pm
Forum: Volume 112 (11200-11299)
Topic: 11260 - Odd Root Sum
Replies: 22
Views: 14079

Re: 11260 - Odd Root Sum

[JAVA]
import java.io.*;

public class Main {

public static void main(String[] args) throws Exception {
int i=0;

BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

String str;
Double a[]=new Double[30000];
int io=0;
while(!(str=br.readLine()).equals("0"))
{ Double sum ...

Go to advanced search