Answer:
using System;
class CheckDigit
{
public static void Main (string[] args)
{ //Accepting value from user
Console.WriteLine ("Enter a four-digit account number");
int acc = Convert.ToInt32(Console.ReadLine());
int d=acc%10; //extracting the last digit
acc=acc/10; //having the first three digit
if(acc % 7 == d) //checking and displaying
Console.WriteLine ("Valid Account Number");
else
Console.WriteLine ("Invalid Account Number");
}
}
Explanation:
Answer:
The #intro style applies to all paragraphs.
Explanation:
It is a class
A class applyies to all with that name
Answer:
Try to restart the computer or something.
Explanation:
Answer:
If this is a true or false I guess my answer is true?
Explanation: