<span>In word (.docx) or powerpoint (.ppt), one can insert images. These images may come from the internet online and other avenues for inserting images. If one does not have internet at home, he could opt to using the ‘clip arts’ where you click ‘Insert’ in the home bar up, and click clip art.</span>
Answer:
i dont really like computors
Explanation:
im not good at it
Answer:
#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
double PI_D = 3.14159256359;
float PI_F = 3.14159256359;
cout<<"i"<<"\t\t"<<"Float"<<"\t\t"<<"Double"<<endl;
for(int i = 1; i<=10;i++)
{
cout<<i<<"-\t\t"<<PI_F<<setprecision(i)<<"-\t\t"<<PI_D<<setprecision(i)<<endl;
}
return 0;
}
Explanation:
See Attachment where I used comments for explanation
Hi! I don’t know what any of this means but I just wanted to tell you that I hope you have an amazing day and god/allah/etc bless you :)
import java.util.Scanner;
public class JavaApplication57 {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("Enter two numbers:");
int num1 = scan.nextInt();
int num2 = scan.nextInt();
while (num1 <= num2){
if (num1 %2 == 0){
System.out.print(num1+" ");
}
num1+=1;
}
}
}
I hope this helps!