English, asked by vinayakchakraborty35, 6 days ago

Write a notice about Your school, Adarsh Vidyalaya, Solan, is organising a lecture by the famous writer Vikram Seth on the occasion of ‘Literacy Week’ being celebrated in your school. Write a notice informing students about the lecture. Invent necessary details.​

Answers

Answered by soofiaperween
2

Answer:

ANSWER

import java.util.Scanner;

public class KboatTime

{

public static void main(String args[]) {

Scanner in = new Scanner(System.in);

System.out.print("Time in seconds: ");

int inputTime = in.nextInt();

int hrs = inputTime / 3600;

int mins = (inputTime % 3600) / 60;

int secs = (inputTime % 3600) % 60;

System.out.println(hrs

+ " Hours "

+ mins

+ " Minutes "

+ secs

+ " Seconds");

Similar questions