Stopwatch Code ⏰
📌 Coded By Sandeep
✍️ Bot Hub By @bot_hub_telegram
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple React Stopwatch</title>
<meta name="description" content="This is a simple stopwatch application built using React. It allows you to start, stop, and reset the timer, and displays the elapsed time in hours, minutes, seconds and milliseconds.">
<base href="https://simple-react-stopwatch.vercel.app">
<script type="module" crossorigin src="/assets/index-b0fb5038.js"></script>
<link rel="stylesheet" href="/assets/index-a60198e9.css">
</head>
<body>
<div id="root"></div>
</body>
</html>
Please open Telegram to view this post
VIEW IN TELEGRAM
👍2⚡1🔥1🥰1💘1😎1
Cake maker code Python Code ❤️🔥
⌛️ Coded By @Sandeep_library
Join @bot_hub_telegram🔔
eggs = int(input('how much eggs you have?'))
print()
eggsNeed = int(input('how many eggs your cake needs?'))
print()
sugar = int(input('how much sugar you have?'))
print()
sugarNeed = int(input('how much sugar your cake needs?'))
print()
flour = int(input('how much flour you have?'))
print()
flourNeed = int(input('how much flour your cake needs?'))
print()
f = [eggs//eggsNeed, sugar//sugarNeed, flour//flourNeed]
print()
print('you can make ' + str(min(f)) + ' with these resources')
print('and after coke, you will have:')
print('eggs: ' + str(eggs - min(f)*eggsNeed))
print('sugar: ' + str(sugar - min(f)*sugarNeed))
print('flour: ' + str(flour - min(f)*flourNeed))Join @bot_hub_telegram
Please open Telegram to view this post
VIEW IN TELEGRAM
❤1👍1🔥1🤩1🌚1💘1😎1
Please open Telegram to view this post
VIEW IN TELEGRAM
❤1👍1🔥1👏1🤩1🤝1
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>New Year Countdown</title>
</head>
<body>
<main class="container">
<h1 class="title">NEW YEAR COUNTDOWN</h1>
<div class="countdown-container">
<div class="countdown-row">
<div class="day">1</div>
<div class="day">2</div>
<div class="day">3</div>
<div class="day">4</div>
<div class="day">5</div>
</div>
<div class="countdown-row">
<div class="day">6</div>
<div class="day">7</div>
<div class="day">8</div>
<div class="day">9</div>
<div class="day">10</div>
</div>
<div class="countdown-row">
<div class="day">11</div>
<div class="day">12</div>
<div class="day">13</div>
<div class="day">14</div>
<div class="day">15</div>
</div>
<div class="countdown-row">
<div class="day">16</div>
<div class="day">17</div>
<div class="day">18</div>
<div class="day">19</div>
<div class="day">20</div>
</div>
<div class="countdown-row">
<div class="day">21</div>
<div class="day">22</div>
<div class="day">23</div>
<div class="day">24</div>
<div class="day">25</div>
</div>
</div>
<div class="countdown-row-spand">
<div>
<div class="row-one">
<div class="day">26</div>
<div class="day">27</div>
<div class="day">28</div>
</div>
<div class="row-two">
<div class="day">29</div>
<div class="day">30</div>
<div class="day">31</div>
</div>
</div>
<div class="day">
<p>
HAPPY NEW YEAR
<img src="https://cdn-icons-png.flaticon.com/128/2729/2729058.png" alt="">
</p>
</div>
</div>
<div class="time-container">
<div class="time">
<p id="time">0</p>
<p>DAYS</p>
</div>
<div class="time">
<p id="time">00</p>
<P>HOURS</P>
</div>
<div class="time">
<p id="time">00</p>
<P>MINUTES</P>
</div>
<div class="time">
<p id="time">00</p>
<P>SECONDS</P>
</div>
</div>
<p class="country" id="country"></p>
</main>
</body>
</html>❤2⚡1👍1🥰1💘1
CSS
@import url('https://fonts.googleapis.com/css2?family=Signika+Negative:wght@300;500&display=swap');
:root {
--primary-color: #9067c6;
--secondary-color: #8d86c8;
--dark: #242038;
--light: #f7ece1;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Signika Negative', sans-serif;
font-size: 18px;
font-weight: bold;
}
body {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
min-height: 100vh;
/* background-image: url('https://i.gifer.com/origin/4e/4e081e56c21a3793e71d9b012701f062_w200.webp');
background-position: center center;
background-repeat: no-repeat;
background-size: cover; */
background-color: var(--primary-color);
padding: .5em;
}
h1::selection, div::selection, p::selection, img::selection {
background-color: transparent;
}
.container {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
width: 325px;
}
.title {
width: 50%;
text-align: center;
font-size: 1.5rem;
letter-spacing: 1px;
color: var(--light);
}
.countdown-container {
width: 100%;
}
.countdown-row {
display: flex;
height: 20%;
}
.countdown-row-spand {
display: flex;
width: 100%;
}
.countdown-row > div,
.row-one > div, .row-two > div,
.countdown-row-spand > :nth-child(2) {
display: flex;
justify-content: center;
align-items: center;
border-radius: .2em;
margin: .2em;
background-color: #ffffff9c;
color: var(--dark);
border: 1px solid var(--dark);
}
.countdown-row > div {
width: 20%;
}
.row-one > div, .row-two > div {
width: 33.4%;
}
.countdown-row > div,
.row-one > div, .row-two > div {
height: 60px;
}
.countdown-row-spand > :nth-child(1),
.countdown-row-spand > :nth-child(2) {
display: flex;
flex-wrap: wrap;
width: 60%;
}
.countdown-row-spand > :nth-child(2) {
width: 40%;
text-align: center;
padding: 1em;
}
.row-one, .row-two {
display: flex;
width: 100%;
height: 50%;
}
img {
width: 1.6rem;
height: 1.6rem;
}
.time-container {
width: 95%;
display: flex;
justify-content: space-between;
align-items: center;
margin-top: .5em;
color: var(--light);
}
.time > p:nth-child(1),
.time > p:nth-child(2) {
font-size: 1.3rem;
text-align: center;
color: var(--light);
}
.time > p:nth-child(2) {
font-size: 1.1rem;
}
.country {
width: 100%;
font-size: .7rem;
margin-top: .8em;
}
.country:first-letter {
text-transform: uppercase;
};
/* Media queries */
@media(min-width:550px) {
.container {
width: 450px;
}
}👍3🔥1🥰1👏1🎉1💯1
document.addEventListener('DOMContentLoaded', () => {
let idCountdown;
let idDay;
function countdown() {
const time = document.querySelectorAll('#time');
const newYear = new Date('1 Jan 2024');
const date = new Date();
const dif = (newYear - date) / 1000;
if (dif < 0) return clearInterval(idCountdown);
time[0].innerHTML = Math.floor(dif / 3600 / 24);
time[1].innerHTML = formatTime(Math.floor(dif / 3600) % 24);
time[2].innerHTML = formatTime(Math.floor(dif / 60) % 60);
time[3].innerHTML = formatTime(Math.floor(dif) % 60);
}
function formatTime(t) {
return t < 10 ? 0${t} : t; }
countdown();
idCountdown = setInterval(countdown, 1000);
function getDay() {
let num = new Date().getDate() - 1;
formatDay(num);
if(num === 0) return clearInterval(idDay);
};
function formatDay(num) {
const days = document.querySelectorAll(".day");
// Highlight day
if(num === 0) num = 31;
days[num].style.background = '#8d86c8';
// Days gone
days.forEach(day => {
if(day.innerHTML <= num){
day.style.color = '#8d86c8';
day.style.background = '#ffffff9c';
}
});
}
getDay();
idDay = setInterval(getDay, 1000);
// Get country
const countryName = document.getElementById('country');
const infoDate = new Date().toTimeString().split(' ');
let country = infoDate.slice(2, ).join(' ');
country = country.slice(1, -1);
countryName.innerHTML = country;
});
👾2☃1❤1👍1👏1🤩1🙏1
Sandeep Coder
Apple logo using python..
import turtle as t
t.begin_fill()
t.bgcolor('yellow')
t.fillcolor('black')
t.left(134)
for i in range(30):
t.forward(1)
t.left(1)
t.right(5)
for i in range(35):
t.forward(1)
t.left(1)
t.left(5)
t.forward(30)
for i in range(15):
t.forward(0.7)
t.right(3)
t.forward(25)
t.left(5)
for i in range(50):
t.forward(1)
t.left(1)
t.right(3)
for i in range(50):
t.forward(1)
t.left(1)
t.right(5)
for i in range(45):
t.forward(2)
t.left(1)
t.right(5)
for i in range(40):
t.forward(2)
t.left(1)
t.left(5)
for i in range(20):
t.forward(1)
t.left(2)
t.left(5)
t.forward(15)
for i in range(9):
t.forward(2)
t.right(3)
t.forward(1)
for i in range(15):
t.forward(1)
t.right(1)
t.right(4)
t.forward(4.5)
t.right(1)
for i in range(27):
t.forward(1)
t.left(2)
t.left(8)
t.forward(5)
for i in range(25):
t.forward(2)
t.left(1)
t.right(3)
t.forward(10)
t.left(83)
for i in range(75):
t.forward(1.3)
t.right(1)
t.right(4)
for i in range(24):
t.forward(1.3)
t.right(1)
t.forward(9.66)
t.end_fill()
t.penup()
t.left(132)
t.forward(100)
t.right(96)
t.pendown()
t.begin_fill()
t.fillcolor('black')
for i in range(60):
t.forward(0.8)
t.right(1)
t.right(120)
for i in range(60):
t.forward(0.8)
t.right(1)
t.hideturtle()
t.end_fill()
t.done()
👍3🔥1🥰1👏1🤩1🙏1
import urllib.request
import json
url=f"https://mukesh-api.vercel.app/mahadev"
req = urllib.request.Request(url)
with urllib.request.urlopen(req) as response:
data = response.read().decode('utf-8')
out = json.loads(data)
print(out["result"])Please open Telegram to view this post
VIEW IN TELEGRAM
👍2❤1🔥1👏1😇1💘1
Bhagwat Gita Summary using python❤️
Bhagwatgita py
"'import requests
url="https://bhagavad-gita3.p.rapidapi.com/v2/chapters/1/"
headers ={
"X-RapidAPI-Key"
00172e5054mshf7fe92ad8b4a5aap1ffa03jsnff24b9e4d834" "X-RapidAPI-Host" "bhagavad-gita3.p.rapidapi.com"
response requests.get(url, headers-headers) out-response.json()
[print("Chapter name ={{out["name"]}]
Summary in Hindi = {out["chapter_summary_hindi"]}}
Summary in English({{out["chapter summary"]}")'''👍3❤1👏1💯1💘1
import pyshorteners
link =input("enter the url link")
shortener = pyshorteners.Shortener()
try:
tiny_link = shortener.tinyurl.short(link)
print(" shortend url Link :- ", tiny_link)
except:
print("error while converting shorts link")
❤2👍2🤩2🔥1
#include <stdio.h> // THIS FAKE VIRUS CREATE BY ME ..
#include <unistd.h> //@sandeep_library
void printdot()
{
for (int i = 0; i <= 3; i++)
{
printf(".");
sleep(1);
}
}
void printline()
{
for (int i = 0; i < 50; i++)
{
printf("-");
sleep(0.5);
}
}
int main()
{
START:
printline();
printf("\n WELCOME TO MY HACKING SYSTEM !!!\n");
printf(" PLEASE WAIT 10 to 15 SEC");
printdot();
sleep(2);
printf("\n ACTIVATE <<HEY VIRUS>>\n");
sleep(1);
printline();
printf("\n SCANNING YOUR DEVICE <<PLEASE WAIT>>\n SCANNING");
printdot();
printf("\n SCANNING COMPLETE.\n");
printline();
sleep(1);
printf("\n INTSTALING");
printdot();
sleep(2);
printf("\n INSTALING COMPLETE.\n");
REBOOT:
printline();
sleep(2);
printf("\n REBOOT IN 5 SEC\n");
for (int i = 1; i <= 5; i++)
{
printf("%4d SEC.\n", i);
sleep(1);
}
printf(" REBOOTING");
printdot();
sleep(4);
printf("\n REBOOTING COMPELETE.\n");
printline();
printf("\n ALL DONE.\n");
sleep(2);
printf("\n ACTIVATE <<HEY VIRUS>>\n COMPLETE.\n");
ABOUT:
printline();
sleep(2);
printf("\n HI (0088)");
printdot();
printf("\n I AM <<HEY VIRUS>> \n CODE NAME");
printdot();
printf("(****0*01)\n");
sleep(1);
printf("\n <<HEY VIRUS>> V2.0");
printf("\n CREATED_BY_GOURAB.\n");
BACK:
printline();
printf("\n");
sleep(1.5);
printf("\n NOW GET STARTED");
printdot();
printf("\n");
OPTION:
{
int NUM;
printline();
printf("\n OPTION:\n");
sleep(1.5);
printf("\n CLICK 0 FOR HACK SOME ONE DEVICE...\n");
sleep(1);
printf("\n CLICK 1 FOR VIRUS SCAN...\n");
sleep(1);
printf("\n CLICK 2 FOR ABOUT ME !!!\n");
sleep(1);
printf("\n CLICK 3 FOR REBOOT SYSTEM...\n");
sleep(1);
printf("\n CLICK 4 FOR EXIT.\n");
printf("\n >>>");
scanf("%d", &NUM);
if (NUM == 0)
{
int NUM1;
printline();
printf("\n ENTER HIS OR HER MOBILE NUMBER\n\n >>>");
scanf("%d",&NUM1);
printf("\n CONNECTING TO THE MAIN SERVER");
printdot();
sleep(2);
printf("\n CONNCTED TO THE MAIN SERVER\n");
sleep(1);
printf("\n SENDING VIRUS TO %d",NUM1);
printdot();
sleep(1);
printf("\n SENDING COMPLETE\n");
sleep(0.5);
printf("\n FACEBOOK HACKING");
printdot();
sleep(1);
printf("\n COMPLETE\n");
printf("\n INSTAGRAM HACKING");
printdot();
sleep(1);
printf("\n COMPLETE\n");
printf("\n CAMERA HACKING");
printdot();
sleep(1);
printf("\n COMPLETE\n");
printf("\n CONTACTS HACKING");
printdot();
sleep(1);
printf("\n COMPLETE.\n");
sleep(1.5);
printf("\n ALL DONE !!!\n");
sleep(1);
printf("\n YOU WANT TO DISTROY THE PHONE\n");
int DIS;
printf("\n CLICK 0 FOR DISTROY THE PHONE\n");
sleep(0.5);
printf("\n CLICK 1 FOR BACK TO OPTION.\n");
sleep(0.5);
printf("\n CLICK 2 FOR EXIT.\n>>>");
scanf("%d", &DIS);
if (DIS == 0)
{
printf("\n DISTROING PHONE");
printdot();
sleep(3.5);
printf("\n COMPLETE.\n");
}
if (DIS == 1)
{
sleep(1);
goto OPTION;
}
if (DIS == 2)
{
goto EXIT;
}
}
if (NUM == 2)
{
goto ABOUT;
}
if (NUM == 3)
#include <unistd.h> //@sandeep_library
void printdot()
{
for (int i = 0; i <= 3; i++)
{
printf(".");
sleep(1);
}
}
void printline()
{
for (int i = 0; i < 50; i++)
{
printf("-");
sleep(0.5);
}
}
int main()
{
START:
printline();
printf("\n WELCOME TO MY HACKING SYSTEM !!!\n");
printf(" PLEASE WAIT 10 to 15 SEC");
printdot();
sleep(2);
printf("\n ACTIVATE <<HEY VIRUS>>\n");
sleep(1);
printline();
printf("\n SCANNING YOUR DEVICE <<PLEASE WAIT>>\n SCANNING");
printdot();
printf("\n SCANNING COMPLETE.\n");
printline();
sleep(1);
printf("\n INTSTALING");
printdot();
sleep(2);
printf("\n INSTALING COMPLETE.\n");
REBOOT:
printline();
sleep(2);
printf("\n REBOOT IN 5 SEC\n");
for (int i = 1; i <= 5; i++)
{
printf("%4d SEC.\n", i);
sleep(1);
}
printf(" REBOOTING");
printdot();
sleep(4);
printf("\n REBOOTING COMPELETE.\n");
printline();
printf("\n ALL DONE.\n");
sleep(2);
printf("\n ACTIVATE <<HEY VIRUS>>\n COMPLETE.\n");
ABOUT:
printline();
sleep(2);
printf("\n HI (0088)");
printdot();
printf("\n I AM <<HEY VIRUS>> \n CODE NAME");
printdot();
printf("(****0*01)\n");
sleep(1);
printf("\n <<HEY VIRUS>> V2.0");
printf("\n CREATED_BY_GOURAB.\n");
BACK:
printline();
printf("\n");
sleep(1.5);
printf("\n NOW GET STARTED");
printdot();
printf("\n");
OPTION:
{
int NUM;
printline();
printf("\n OPTION:\n");
sleep(1.5);
printf("\n CLICK 0 FOR HACK SOME ONE DEVICE...\n");
sleep(1);
printf("\n CLICK 1 FOR VIRUS SCAN...\n");
sleep(1);
printf("\n CLICK 2 FOR ABOUT ME !!!\n");
sleep(1);
printf("\n CLICK 3 FOR REBOOT SYSTEM...\n");
sleep(1);
printf("\n CLICK 4 FOR EXIT.\n");
printf("\n >>>");
scanf("%d", &NUM);
if (NUM == 0)
{
int NUM1;
printline();
printf("\n ENTER HIS OR HER MOBILE NUMBER\n\n >>>");
scanf("%d",&NUM1);
printf("\n CONNECTING TO THE MAIN SERVER");
printdot();
sleep(2);
printf("\n CONNCTED TO THE MAIN SERVER\n");
sleep(1);
printf("\n SENDING VIRUS TO %d",NUM1);
printdot();
sleep(1);
printf("\n SENDING COMPLETE\n");
sleep(0.5);
printf("\n FACEBOOK HACKING");
printdot();
sleep(1);
printf("\n COMPLETE\n");
printf("\n INSTAGRAM HACKING");
printdot();
sleep(1);
printf("\n COMPLETE\n");
printf("\n CAMERA HACKING");
printdot();
sleep(1);
printf("\n COMPLETE\n");
printf("\n CONTACTS HACKING");
printdot();
sleep(1);
printf("\n COMPLETE.\n");
sleep(1.5);
printf("\n ALL DONE !!!\n");
sleep(1);
printf("\n YOU WANT TO DISTROY THE PHONE\n");
int DIS;
printf("\n CLICK 0 FOR DISTROY THE PHONE\n");
sleep(0.5);
printf("\n CLICK 1 FOR BACK TO OPTION.\n");
sleep(0.5);
printf("\n CLICK 2 FOR EXIT.\n>>>");
scanf("%d", &DIS);
if (DIS == 0)
{
printf("\n DISTROING PHONE");
printdot();
sleep(3.5);
printf("\n COMPLETE.\n");
}
if (DIS == 1)
{
sleep(1);
goto OPTION;
}
if (DIS == 2)
{
goto EXIT;
}
}
if (NUM == 2)
{
goto ABOUT;
}
if (NUM == 3)
🥰2🙏2👍1🔥1🎉1
This media is not supported in your browser
VIEW IN TELEGRAM
try:
from colorama import Fore,Style,Back
except:
import os
os.system("pip install colorama")
n=input("Please enter your Name -> ")
class wish:
"""happy new year wishes class with different color output
by @MR_sukkun
"""
def __init__(self,name):
self.name=name
def __str__(self) -> str:
return f"Happy New Year, {self.name}"
x=wish(n)
COLOR=[Fore.BLACK,Fore.BLUE,Fore.CYAN,Fore.CYAN,Fore.GREEN,Fore.YELLOW,Fore.RED,Fore.WHITE,Fore.MAGENTA]
BACK=[Back.BLACK,Back.BLUE,Back.CYAN,Back.CYAN,Back.GREEN,Back.YELLOW,Back.RED,Back.WHITE,Back.MAGENTA]
STYLE=[Style.BRIGHT,Style.DIM,Style.NORMAL,Style.RESET_ALL]
for i in STYLE:
print(i,x)
for i in COLOR:
print(i,x)
for i in BACK:
print(i,x)
🔥3
import java.util.Scanner;
public class Covid19CheckupTelegramFeature {
public static void main(String[] args) {
int[] symptoms = new int[10];
String name;
Scanner scanner = new Scanner(System.in);
System.out.println("Welcome to the COVID-19 Checkup Telegram Bot");
System.out.println("Please enter your name:");
name = scanner.nextLine();
System.out.println("What is your age?");
symptoms[0] = scanner.nextInt();
// As a Telegram chatbot, you can prompt users with inline keyboard buttons for easier selection System.out.println("Dear " + name + ", Do you have fever?");
displayInlineKeyboardButtons("Fever", symptoms, 1, scanner);
System.out.println("Do you have respiratory distress?");
displayInlineKeyboardButtons("Respiratory Distress", symptoms, 2, scanner);
// Remaining questions for symptoms can be handled similarly with inline keyboard buttons // ... if (shouldVisitClinic(symptoms)) {
System.out.println("Dear " + name + ", if you feel very sick, please consider visiting a clinic.");
} else {
System.out.println("Dear " + name + ", based on your responses, you may not need to visit a clinic at this time.");
}
// Include WHO information and prevention tips System.out.println("Thank you for using the COVID-19 Checkup Telegram Bot!");
}
// Method to display inline keyboard buttons for symptom selection private static void displayInlineKeyboardButtons(String symptom, int[] symptoms, int index, Scanner scanner) {
System.out.println(symptom + "?\nYes=0, No=1");
// Here, you can handle user input using Telegram inline keyboard buttons // and assign the corresponding value to the symptoms array symptoms[index] = scanner.nextInt();
}
// Method to determine if the user should visit a clinic based on symptoms private static boolean shouldVisitClinic(int[] symptoms) {
for (int i = 1; i < symptoms.length; i++) {
if (symptoms[i] == 0) {
return true;
}
}
return false;
}
}
COVID 19 Check-up
🥰1
import java.util.*;
// Compiler version JDK 11.0.2
class Covid19Checkup
{
public static void main(String args[])
{
int ara[] = new int[10];
String name;
Scanner sc = new Scanner(System.in);
System.out.println("COVID-19 Checkup Java program");
System.out.println("Please enter your name");
name = sc.nextLine();
System.out.println("What is your age?\n");
ara[0] = sc.nextInt();
System.out.println("Dear "+name+", Do you have fever?\nYes=0,No=1\n");
ara[1] = sc.nextInt();
System.out.println("Do you have respiratory distress?\nYes=0,No=1\n");
ara[2] = sc.nextInt();
System.out.println("Do you have cough?\nYes=0,No=1\n");
ara[3] = sc.nextInt();
System.out.println("Do you feel tired?\nYes=0,No=1\n");
ara[4] = sc.nextInt();
System.out.println("Do you vomit or you experience diarrhea?\nYes=0,No=1");
ara[5] = sc.nextInt();
System.out.println("Do you feel chill or sweaty?\nYes=0,No=1");
ara[6] = sc.nextInt();
System.out.println("Have you travelled internationally?\nYes=0,No=1");
ara[7] = sc.nextInt();
System.out.println("Do you live anywhere Covid-19 is spreading?\nYes=0,No=1");
ara[8] = sc.nextInt();
System.out.println("Do you live with someone that has Covid-19?\nYes=0, No=1");
ara[9] = sc.nextInt();
if(ara[1]==0 && ara[2]==0 && ara[3]==0 && ara[4]==0 && ara[5]==0 && ara[6]==0 && ara[7]==0 && ara[8]==0 && ara[9]==0)
{
System.out.println("Dear "+name+",\nYou should go to the clinic and test your blood.\n ");
}
else {
System.out.println("Dear "+name+", If you feel very sick,Go to the clinic.\n");
}
System.out.println("According to https://www.who.int/, ");
if(ara[0]>=0 && ara[0]<=9){
System.out.println("\nIn your age fatality rate of corona virus is 0.00%");
}
else if(ara[0]>=10 && ara[0]<=19){
System.out.println("\nIn your age fatality rate of corona virus is 0.2%");
}
else if(ara[0]>=20 && ara[0]<=29){
System.out.println("\nIn your age fatality rate of corona virus is 0.2%");
}
else if(ara[0]>=30 && ara[0]<= 39){
System.out.println("\nIn your age fatality rate of corona virus is 0.2%");
}
else if(ara[0]>=40 && ara[0]<=49){
System.out.println("\nIn your age fatality rate of corona virus is 0.4%");
}
else if(ara[0]>=50 && ara[0]<=59){
System.out.println("\nIn your age fatality rate of corona virus is 1.3%");
}
else if(ara[0]>=60 && ara[0]<=69){
System.out.println("\nIn your age fatality rate of corona virus is 3.6%");
}
else if(ara[0]>=70 && ara[0]<=79){
System.out.println("\nIn your age fatality rate of corona virus is 8.0%");
}
else if(ara[0]>=80){
System.out.println("\nIn your age fatality rate of corona virus is 21.8% or 14.8%");
}
System.out.println("\n\n\nImportant tips to prevent it:\n1)Stay at home\n2)Use mask\n3)Wash your hands with soap, \n or use acohol-base rub kills viruses\n that may be on your hands.\n");
System.out.println("Thank you....Please give me a star");
System.out.println("Developed by Sandeep");
}
}
COVID 19 Check-up
🔥1🎉1🙏1
{
goto REBOOT;
}
if (NUM == 1)
{printf("\n");
printline();
printf("\n SCANING YOUR DEVICE");
printdot();
sleep(2);
printf("\n SCANING COMPLETE.");
sleep(2);
printf("\n REMOVE ANONYMOUS'S VIRUS");
printdot();
sleep(2);
printf("\n COMPLETE.");
sleep(0.5);
printf("\n CLICK 0 FOR OPTION OR CLICK 1 FOR EXIT.\n>>>");
int OPT;
scanf("%d", &OPT);
if (OPT == 0)
{
goto OPTION;
}
if (OPT == 1)
{
goto EXIT;
}
}
if (NUM == 4)
{
goto EXIT;
}
EXIT:
printline();
sleep(3.5);
printf("\n YOUR DIVICE IS MY CONTROL");
printdot();
printdot();
printf("\n YOU CAN NOT REMOVE ME .\n");
sleep(2);
for (int i = 0; i < 1000; i++)
{
printf(" HACKED\n");
sleep(0.8);
}
}
printf("\n");
printline();
printline();
printf("\n PLEASE GIVE ME STAR.\n");
printline();
return 0;
}
goto REBOOT;
}
if (NUM == 1)
{printf("\n");
printline();
printf("\n SCANING YOUR DEVICE");
printdot();
sleep(2);
printf("\n SCANING COMPLETE.");
sleep(2);
printf("\n REMOVE ANONYMOUS'S VIRUS");
printdot();
sleep(2);
printf("\n COMPLETE.");
sleep(0.5);
printf("\n CLICK 0 FOR OPTION OR CLICK 1 FOR EXIT.\n>>>");
int OPT;
scanf("%d", &OPT);
if (OPT == 0)
{
goto OPTION;
}
if (OPT == 1)
{
goto EXIT;
}
}
if (NUM == 4)
{
goto EXIT;
}
EXIT:
printline();
sleep(3.5);
printf("\n YOUR DIVICE IS MY CONTROL");
printdot();
printdot();
printf("\n YOU CAN NOT REMOVE ME .\n");
sleep(2);
for (int i = 0; i < 1000; i++)
{
printf(" HACKED\n");
sleep(0.8);
}
}
printf("\n");
printline();
printline();
printf("\n PLEASE GIVE ME STAR.\n");
printline();
return 0;
}