Skip to content

Commit cdbe9a1

Browse files
author
Ram swaroop
committed
half done
1 parent f69abf2 commit cdbe9a1

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package com.hackerrank.projecteuler;
2+
3+
import java.util.Scanner;
4+
5+
/**
6+
* Created by IntelliJ IDEA.
7+
*
8+
* @author: ramswaroop
9+
* @date: 1/1/16
10+
* @time: 8:48 AM
11+
*/
12+
public class MultiplesOf3and5 {
13+
14+
public static void main(String a[]) {
15+
Scanner in = new Scanner(System.in);
16+
17+
int t = Integer.parseInt(in.nextLine());
18+
19+
}
20+
}

0 commit comments

Comments
 (0)