Answer:
As a way to learn from others, as a way to find information
Explanation:
When you read about lets say how to make a certain cookie mix you like your learning from someone else. The source is also helping you find information about that topic you want. Its not supposed to be a way for entertainment or games, its not a platform for you to talk to others, and not made for you to just copy and take credit.
Answer:
a) 00000100 01000111 11100011 11100000 01111110
b) 01111110 01000111 11100011 11100000 11100000 11100000 01111110 01111110
c) 01111110 01000111 110100011 11100000 011111010 0111110
Explanation:
Answer:
an electronic machine that can store, find and
Answer:
import java.util.Scanner;
class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
while(true) {
System.out.print("Enter an integer (0 to exit): ");
int num = scan.nextInt();
if (num == 0) break;
if (num%3 == 0 && num%5 == 0) {
System.out.printf("%d is divisable by both 3 and 5.\n", num);
}
else if (num%3 == 0 && num%5 != 0) {
System.out.printf("%d is divisable by 3 but not by 5.\n", num);
}
else if (num%3 != 0 && num%5 == 0) {
System.out.printf("%d is divisable by 5 but not by 3.\n", num);
} else {
System.out.printf("%d is not divisable by 3 or 5.\n", num);
}
}
scan.close();
}
}