File tree Expand file tree Collapse file tree 5 files changed +40
-0
lines changed
src/com/sbiswas001/twelveproject Expand file tree Collapse file tree 5 files changed +40
-0
lines changed Original file line number Diff line number Diff line change 1+ package com .sbiswas001 .twelveproject ;
2+
3+ public class ArmstrongNumber {
4+ }
Original file line number Diff line number Diff line change 1+ package com .sbiswas001 .twelveproject ;
2+
3+ public class DateRepresentation {
4+ }
Original file line number Diff line number Diff line change 1+ package com .sbiswas001 .twelveproject ;
2+
3+ import java .util .Scanner ;
4+
5+ public class PalindromeString {
6+
7+ private String s ;
8+
9+ private void input () {
10+ Scanner sc = new Scanner (System .in );
11+ System .out .println ("Enter a string: " );
12+ s = sc .nextLine ();
13+ }
14+
15+ /**
16+ * Calls other methods
17+ * @param args Arguments passed to main method
18+ */
19+ public static void main (String [] args ) {
20+ PalindromeString ob = new PalindromeString ();
21+ ob .input ();
22+ System .out .println ();//TODO
23+ }
24+ }
Original file line number Diff line number Diff line change 1+ package com .sbiswas001 .twelveproject ;
2+
3+ public class PrimePalindrome {
4+ }
Original file line number Diff line number Diff line change 1+ package com .sbiswas001 .twelveproject ;
2+
3+ public class Transpose {
4+ }
You can’t perform that action at this time.
0 commit comments