Computer Science, asked by sanachak2005, 4 months ago

unique number program in java

Answers

Answered by gamegirl5
0

Explanation:

#include<stdio.h>

#include<conio.h>

void main()

{

int a,b;

int multiplication;

clrscr();

printf("Enter the first number");

scanf("%d", &a);

printf("Enter the second number");

scanf("%d", &b);

multiplication = a*b;

printf("The Total is %d", multiplication);

getchar();

}

Answered by surajpjadhav800
0

Answer:

import java.util.*;

public class UniqueNumberExample2.

{

public static void main(String args[] )

{

Scanner sc=new Scanner(System.in);

System.out.print("Enter the number you want to check:");

//reading an integer from the user.

Similar questions