2) Resp. - Sistemas de Informação OS

Propaganda
1)Resp.:
import javax.swing.*;
public class Questao1 {
public static void main(String args[]){
int n1 =
Integer.parseInt(JOptionPane.showInputDialog(null,"Digite o 1o No"));
int n2 =
Integer.parseInt(JOptionPane.showInputDialog(null,"Digite o 2o No"));
int menor = (int)(Math.min(n1,n2));
int maior = (int)(Math.max(n1,n2));
for(int i = menor+1; i<maior; i++){
System.out.println(i);
}
}
}
2) Resp.:
public class ProvaAC1_2011 {
public static void main(String args[]){
int vet[] = new int[10];
for(int i=0; i<vet.length; i++){
vet[i] = i+1;
}
}
}
3) Resp.:
javac.exe = compilador Java que gera o arquivo “.class”;
java.exe = interpretador Java que executa o arquivo “.class”;
4) Resp.:
Não, porque para executar qualquer arquivo “.class” é necessário apenas ter o JRE instalado em
qualquer sistema operacional.
5) Resp.:
import javax.swing.*;
public class Questao5 {
public static void main(String args[]){
int num =
Integer.parseInt(JOptionPane.showInputDialog(null,"Digite um No."));
for(int i=1; i<=10; i++){
System.out.println(num +" X "+i+" = "+(num*i));
}
}
}
6
A
7
B
8
D
9
A
10
A
11
D
12
C
13
B
14
B
15
D
Download