Fix typos in comments (#2354)

This commit is contained in:
Manan-Rathi
2021-10-01 10:38:17 +05:30
committed by GitHub
parent 40e055b03b
commit ed63a90289
3 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@ package Conversions;
/** /**
* Converting Integers into Roman Numerals * Converting Integers into Roman Numerals
* *
* <p>('I', 1); ('IV',4); ('V', 5); ('IV',9); ('X', 10); ('XL',40; ('L', 50); ('XC',90); ('C', 100); * <p>('I', 1); ('IV',4); ('V', 5); ('IX',9); ('X', 10); ('XL',40); ('L', 50); ('XC',90); ('C', 100);
* ('D', 500); ('M', 1000); * ('D', 500); ('M', 1000);
*/ */
public class IntegerToRoman { public class IntegerToRoman {

View File

@ -7,7 +7,7 @@ public class PalindromePrime {
public static void main(String[] args) { // Main funtion public static void main(String[] args) { // Main funtion
Scanner in = new Scanner(System.in); Scanner in = new Scanner(System.in);
System.out.println("Enter the quantity of First Palindromic Primes you want"); System.out.println("Enter the quantity of First Palindromic Primes you want");
int n = in.nextInt(); // Input of how many first pallindromic prime we want int n = in.nextInt(); // Input of how many first palindromic prime we want
functioning(n); // calling function - functioning functioning(n); // calling function - functioning
in.close(); in.close();
} }