Advertisements
Advertisements
Question
Define a class to accept the gmail id and check for its validity.
A gmail id is valid only if it has:
→ @
→ . (dot)
→ gmail
→ com
Example: [email protected] is a valid gmail id.
Solution
import java.util.Scanner;
class EmailCheck
{
public static void main(String args[])
{
Scanner sc=new Scanner(System.in);
System.out.println("Enter a valid gmail id");
String mail=sc.next().trim();
int c1=0,c2=0;
for(int i=0;i<mail.length();i++)
{
char c=mail.charAt(i);
if(c=='@')
c1++;
if(c=='.')
c2++;
}
if(c1==1 && c2==1
{
int p=mail.indexOf('@');
int q=mail.indexOf('.');
String subdomain=mail.substring(p+1,q);
String domain=mail.substring(q+1);
if(subdomain.equals("gmail") && domain.
equals("com"))
System.out.println(mail+" is valid gmail id");
else
System.out.println(mail+" is an invalid gmail id");
}
else
System.out.println(mail+"is an invalid gmail
id");
}
}
Output:
Enter a valid gmail id
[email protected] is a valid gmail id
Enter a valid gmail id
[email protected] is an invalid gmail id
APPEARS IN
RELATED QUESTIONS
DTDC, a courier company, charges for the courier based on the weight of the parcel. Define a class with the following specifications:
class name: | courier | |
Member variables: | name - name of the customer | |
weight - weight of the parcel in kilograms | ||
address - address of the recipient | ||
bill - amount to be paid | ||
type - 'D'- domestic, 'I'- international | ||
Member methods: | ||
void accept ( )- | to accept the details using the methods of the Scanner class only. | |
void calculate ( )- | to calculate the bill as per the following criteria: | |
Weight in Kgs | Rate per Kg | |
First 5 Kgs | Rs.800 | |
Next 5 Kgs | Rs.700 | |
Above 10 Kgs | Rs.500 | |
An additional amount of Rs.1500 is charged if the type of the courier is I (International) | ||
void print )- | To print the details | |
void main ()- | to create an object of the class and invoke the methods |
Define a class to accept a number from user and check if it is an EvenPal number or not. (The number is said to be EvenPal number when number is palindrome number (a number is palindrome if it is equal to its reverse) and sum of its digits is an even number.)
Example: 121 - is a palindrome number
Sum of the digits - 1 + 2 + 1 = 4 which is an even number
Define a class to accept values into an integer array of order 4 x 4 and check whether it is a DIAGONAL array or not An array is DIAGONAL if the sum of the left diagonal elements equals the sum of the right diagonal elements. Print the appropriate message.
Example:
3 4 2 5 Sum of the left diagonal elements =
2 5 2 3 3 + 5 + 2 + 1 = 11
5 3 2 7 Sum of the right diagonal elements =
1 3 7 1 5 + 2 + 3 + 1 = 11