Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // By: Sammy Samkough
- import java.util.Scanner;
- public class CountingPeopleWhile
- {
- public static void main(String[] args)
- {
- Scanner sc = new Scanner(System.in);
- System.out.println("How many people are there?");
- int people;
- people = sc.nextInt();
- int i = 0;
- while (i < people)
- {
- if (i == 1)
- {
- System.out.println(i + " person has come.");
- }
- else
- {
- System.out.println(i + " people have came.");
- }
- i++;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment