Jump to content

Recommended Posts

Posted

 

3.Write a program called Convert for inserting a

distance in kilometers from the keyboard and convert it into miles (a mile is 1609 km).

 

 

import java.util.Scanner;
public class Convert{
    public static void main(String[]aargs){
        Scanner in=new Scanner(System.in);
        System.out.println("insert a distance in kilometers : ");
        Double kilometers=in.nextDouble();
        Double miles=kilometers*1.609;
        System.out.println(kilometers+ " kilometers is equal to " +miles+ " miles");
    }
}

 

 

 

4.Write Java program to allow the user to input his/her age. Then the program will show if the person is eligible to vote. A person who is eligible to vote must be older than or equal to 18 years old.

Enter your age: 18

You are eligible to vote.

 

 

import java.util.Scanner;
public class Vote{
    public static void main(String[]args){
Scanner in=new Scanner(System.in);
System.out.println("how old are you");
int age;
age=in.nextInt();
if (age>=18){System.out.println("You are eligible to vote.");
    }
else {System.out.println("You are not eligibe to vote.");}
    }}

 

 

 

5.Write a Java program to determine whether an input number is an even number.

 

 

package even;

import java.util.Scanner;

public class Even {

    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int num;
        System.out.println("enter a number :");
        num = in.nextInt();
        if ((num % 2) == 0) {
            System.out.println("It is an even number.");
        } else {
            System.out.println("It is an odd number.");
        }




    }
}

 

 

 

6.Write a Java program that determines a student’s grade.

The program will read three types of scores(quiz, mid-term, and final scores) and determine the grade based on the following rules:

-if the average score >=90% =>grade=A

-if the average score >= 70% and <90% => grade=B

-if the average score>=50% and <70% =>grade=C

-if the average score<50% =>grade=F

See the example output below:

Quiz score: 80

Mid-term score: 68

Final score: 90

Your grade is B.

 

package grade;

import java.util.Scanner;

public class Grade {

    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int quiz;
        int midterm;
        int finalscore;
        int average;
        System.out.println("insert quiz grade : ");
        quiz = in.nextInt();
        System.out.println("insert mid-term grade : ");
        midterm = in.nextInt();
        System.out.println("insert final grade : ");
        finalscore = in.nextInt();
        average = (quiz + midterm + finalscore) / 3;
        if (average >= 90) {
            System.out.println("grade=A");
        }
        if ((average >= 70) && (average < 90)) {
            System.out.println("grade=B");
        }
        if ((average >= 50) && (average < 70)) {
            System.out.println("grade=C");
        }
        if (average < 50) {
            System.out.println("grade=F");
        }

    }
}

 

 

 

7.Write a Java program to calculate the revenue from a sale based on the unit price and quantity of a product input by the user.

 

The discount rate is 10% for the quantity purchased between 100 and 120 units, and 15% for the quantity purchased greater than 120 units. If the quantity purchased is less than 100 units, the discount rate is 0%. See the example output as shown below:

Enter unit price: 25

 

Enter quantity: 110

 

The revenue from sale: 275.0$

 

After discount: 2475.0$(10.0%)

 

 

package revenue;

import java.util.Scanner;

public class Revenue {

    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int unitprice, quantity;
        double revenue, afterdiscount, discount = 0;
        System.out.println("Enter unit price:");
        unitprice = in.nextInt();
        System.out.println("Enter quantity:");
        quantity = in.nextInt();
        revenue = unitprice * quantity;
        System.out.println("The revenue from sale: " + revenue + "$");
        if ((quantity >= 100) && (quantity <= 120)) {
            discount = (revenue * 10) / 100;
        }
        if (quantity > 120) {
            discount = (revenue * 15) / 100;
        }
        if (quantity < 100) {
            discount = (revenue * 0) / 100;

        }
        afterdiscount = revenue - discount;
        System.out.println("After discount: " + afterdiscount + " $");

    }
}

 

 

 

8.Write a Java program to detect key presses.(use switch)

 

If the user pressed number keys( from 0 to 9), the program will tell the number that is pressed, otherwise, program will show "Not allowed".

 

 

package keypress;

import java.util.Scanner;

public class Keypress {

    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        System.out.println("press a key : ");
        char key = in.next().charAt(0);
        switch (key) {
            case '0':
                System.out.println("you pressed 0. ");
                break;
            case '1':
                System.out.println("you pressed 1. ");
                break;
            case '2':
                System.out.println("you pressed 2. ");
                break;
            case '3':
                System.out.println("you pressed 3. ");
                break;
            case '4':
                System.out.println("you pressed 4. ");
                break;
            case '5':
                System.out.println("you pressed 5. ");
                break;
            case '6':
                System.out.println("you pressed 6. ");
                break;
            case '7':
                System.out.println("you pressed 7. ");
                break;
            case '8':
                System.out.println("you pressed 8. ");
                break;
            case '9':
                System.out.println("you pressed 9. ");
                break;
            default:
                System.out.println("Not Allowed");
        }

    }
}

 

 

 

9. Write a Java program that allows the user to choose the correct answer of a question.(use switch)

 

See the example below:

What is the correct way to declare a variable to store an integer value in Java?

a. int 1x=10;

b. int x=10;

c. float x=10.0f;

d. string x="10";

Enter your choice: c

 

 

package correctanswer;

import java.util.Scanner;

public class CorrectAnswer {

    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        System.out.println("What is the correct way to declare a variable to store an integer value in Java?");
        System.out.println("a. int 1x=10;");
        System.out.println("b. int x=10;");
        System.out.println("c. float x=10.0f;");
        System.out.println("d. string x= \"10\";");
        System.out.print("Enter ur choice : ");
        char choice = in.next().charAt(0);
        switch (choice) {
            case 'a':
                System.out.println("wrong answer.");
                break;
            case 'b':
                System.out.println("correct answer.");
                break;
            case 'c':
                System.out.println("wrong answer.");
                break;
            case 'd':
                System.out.println("wrong answer.");
                break;
            default:
                System.out.println("your choice " + choice + " dosen't exist .");

        }
    }
}

 

 

 

10.By using do while loop, write Java program to prompt the user to choose the correct answer from a list of answer choices of a question.

 

The user can choose to continue answering the question or stop answering it. See the example below:

What is the command keyword to exit a loop in Java?

 

a. int

 

b. continue

 

c. break

 

d. exit

 

Enter your choice: b

 

Incorrect!

 

Again? press y to continue:

 

 

package exitloop2;

import java.util.Scanner;

public class ExitLoop2 {

    public static void main(String[] args) {
        char repeat;
        do {
            Scanner in = new Scanner(System.in);
            System.out.println("What is the command keyword to exit a loop in Java?");
            System.out.println("a.int");
            System.out.println("b.continue");
            System.out.println("c.break");
            System.out.println("d.exit");
            System.out.print("Enter your choice: ");
            char choice = in.next().charAt(0);
            if ((choice == 'a') || (choice == 'b') || (choice == 'd')) {
                System.out.println("Incorrect!");
                System.out.println("Again? press y to continue: ");
                repeat = in.next().charAt(0);
            } else {

                System.out.println("Correct !");
                repeat = 'n';
            }
        } while (repeat == 'y');

    }
}

 

 

 

11.By using while loop Write Java program to prompt the user to choose the correct answer from a list of answer choices of a question.

 

The user can choose to continue answering the question or stop answering it. See the example below:

What is the command keyword to exit a loop in Java?

 

a. int

 

b. continue

 

c. break

 

d. exit

 

Enter your choice: b

 

Incorrect!

 

Again? press y to continue:

 

 

package exitloop;

import java.util.Scanner;

public class ExitLoop {

    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        char repeat = 'y';
        while (repeat == 'y') {
            System.out.println("What is the command keyword to exit a loop in Java?");
            System.out.println("a.int");
            System.out.println("b.continue");
            System.out.println("c.break");
            System.out.println("d.exit");
            System.out.print("Enter your choice:");
            char answer = in.next().charAt(0);
            if ((answer == 'a') || (answer == 'b') || (answer == 'd')) {
                System.out.println("Incorrect !");
                System.out.println("Again? press y to continue: ");
                repeat = in.next().charAt(0);
            } else {
                System.out.println("Correct!");
                repeat = 'n';
            }
        }

    }
}

 

 

 

12.Using a while loop Write a program that asks the user to enter a character then the program displays the character. So on! The program stops only if the user enters the character 't'.

 

 

package enterchar2;

import java.util.Scanner;

public class EnterChar2 {

    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        char character = 'a';
        while (character != 't') {
            System.out.println("Insert a char: ");
            character = in.next().charAt(0);
            System.out.println("Your character is: " + character);
        }
    }
}

 

 

 

13.Using do while loop Write a program that asks the user to enter a character then the program displays the character. So on! The program stops only if the user enters the character 't'.

 

 

package enterchar;

import java.util.Scanner;

public class EnterChar {

    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        char character;
        do {
            System.out.println("Insert a char: ");
            character = in.next().charAt(0);
            System.out.println("Your character is: " + character);
        } while (character != 't');
    }
}

 

Posted (edited)

Nice share for noobies in java.

Although, you have to add the source.

 

The topic moved to the right section!

Edited by MeVsYou

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Posts

    • How much would something like thos cost for H5? Im not a developer just want something like so i could play alone on my server, and i need it to be easy to instal ;3
    • The service is developing step by step to be convenient and reliable for every user. 🤝 We strive to build a strong foundation for long-term and comfortable cooperation, so you can rely on us and get consistent results. 🌟 Our goal is long-term relationships with every user, creating a solid base for stable work with our service. 📌 Website: vibe-sms.net 📲 Our Telegram channel: https://t.me/vibe_sms    
    • datapack + login server + gameserver for personal use doesnt have to be fancy 
    • 最优质的 Reddit 账号,专为想要影响舆论而不仅仅是阅读的人准备。 在互联网上,重要的不仅仅是观点,还有声誉。在 Reddit 上,声誉以业力值(Karma)衡量——只有少数人才能获得真正有分量的话语权。 对于企业家、营销人员、投资者和意见领袖来说,高业力账号能打开通往那些制定趋势、孕育创意、驱动数百万人的社区之门。 成为别人愿意倾听的人。推广产品、测试想法、塑造舆论——并且以强势的姿态去做。 为什么这很重要: 高业力不仅仅是你个人资料上的一个数字,它是一种能换取信任的工具。而信任是一种可以换取一切的货币。 我们的在线商店产品: 账号: Telegram、Facebook、Reddit、Twitter (X)、Instagram、YouTube、TikTok、Discord、VK、LinkedIn、GitHub、Snapchat、Gmail、电子邮箱(Outlook、Firstmail、Rambler、Onet、Gazeta、GMX、Yahoo、Proton、Web.de)、Google Voice、Google Ads 高级订阅: Telegram Premium、Twitter Premium X、YouTube Premium、Spotify Premium、Netflix Premium、Discord Nitro、ChatGPT Plus/PRO、XBOX Game Pass 附加服务: Telegram Stars、代理(IPv4、IPv6、ISP、Mobile)、VPN(Outline、WireGuard 等)、VDS/RDP 服务器 优惠码: AUGUST2025(九折优惠) 支付方式: 银行卡 · 加密货币 · 其他常用方式 购买方式: 在线商店:点击  Telegram 机器人:点击  其他服务: SMM 面板:点击 - 社交账号推广服务 使用我们的SMM面板可进行推广:Facebook、Instagram、Telegram、Spotify、Soundcloud、YouTube、Reddit、Threads、Kick、Discord、LinkedIn、Likee、VK、Twitch、Kwai、网站流量、TikTok、Trust Pilot、Apple Music、Tripadvisor、Snapchat 等等 首次试用SMM面板可获得$1奖励: 只需在我们网站提交一个主题为“Get Trial Bonus”的工单(Support) 产品列表: Reddit Karma Brute Account | 1 KARMA | 仅限 Cookies 访问(密码可能无效)| 最便宜的账号 | 起价:$1 Reddit Karma Brute Account | 20-100 发帖和评论业力 | 混合 IP 注册 | 格式:USERNAME: PASSWORD:EMAIL:MAILPASS | 起价:$5 Reddit Karma Brute Account | 500-1000 发帖和评论业力 | 混合 IP 注册 | 格式:USERNAME: PASSWORD:EMAIL:MAILPASS | 起价:$9 Reddit Karma Brute Account | 1000 发帖业力 + 100 评论业力 | 混合 IP 注册 | 格式:USERNAME: PASSWORD:EMAIL:MAILPASS | 起价:$15 Reddit Karma Brute Account | 2000 发帖业力 + 100 评论业力 | 混合 IP 注册 | 格式:USERNAME: PASSWORD:EMAIL:MAILPASS | 起价:$20 Reddit Karma Brute Account | 3000 发帖业力 + 100 评论业力 | 混合 IP 注册 | 格式:USERNAME: PASSWORD:EMAIL:MAILPASS | 起价:$25 Reddit Karma Brute Account | 5000 发帖业力 + 100 评论业力 | 混合 IP 注册 | 格式:USERNAME: PASSWORD:EMAIL:MAILPASS | 起价:$35 Reddit Karma Brute Account | 10000+ 业力 | 混合 IP 注册 | 格式:USERNAME: PASSWORD:EMAIL:MAILPASS(包含并可用邮箱)| 起价:$45 Reddit Karma Brute Account | 20000 业力 | 混合 IP 注册 | 格式:USERNAME: PASSWORD:EMAIL:MAILPASS(包含并可用邮箱)| 起价:$60 Reddit Karma Brute Account | 50000+ 业力 | 混合 IP 注册 | 格式:USERNAME: PASSWORD:EMAIL:MAILPASS(包含并可用邮箱)| 起价:$90 Reddit Karma Brute Account | 100000+ 业力 | 混合 IP 注册 | 格式:USERNAME: PASSWORD:EMAIL:MAILPASS(包含并可用邮箱)| 起价:$149 忠实客户 — 额外折扣与优惠码! 九折至八折优惠或注册即送 $1 奖励 如果您想获得注册奖励 $1 或 首次购买九折至八折优惠,您可以留言: "请发给我奖励, 我的用户名是..." 您也可以在所有我们的商店首次购买时使用优惠码:"SOCNET"(85 折优惠!) 联系方式与支持: Telegram: https://t.me/socnet_support Telegram频道: https://t.me/accsforyou_shop WhatsApp: https://wa.me/79051904467  WhatsApp频道: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n Discord: socnet_support  Discord服务器: https://discord.gg/y9AStFFsrh  邮箱: solomonbog@socnet.store  通过以上联系方式您还可以: — 咨询批发采购事宜 — 建立合作关系(现有合作伙伴:https://socnet.bgng.io/partners ) — 成为我们的供应商 SocNet — 数字商品与高级订阅商店 
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock