This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
import java.util.Arrays; | |
public class Crescente { | |
public static void main(String[] args) { | |
Scanner scan = new Scanner(System.in); | |
Arrays crescente = null; | |
long[] arr = new long[4]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
public class AlgoArray { | |
public static void main(String[] args) { | |
Scanner scan = new Scanner(System.in); | |
System.out.println("Digite o tamanho do Array"); | |
long tamanho = scan.nextLong(); // Recebe o valor para o tamanho do array | |
long arr[] = new long[(int) tamanho]; // Criação do array com o valor passado anteriormente |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Document : effect | |
Created on : 17/07/2013, 22:00:44 | |
Author : Gustavo | |
Description: | |
Purpose of the stylesheet follows. | |
*/ | |
.menu p { | |
text-decoration: #333333; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%-- | |
Document : rotation | |
Created on : 17/07/2013, 20:56:20 | |
Author : Gustavo | |
--%> | |
<%@page contentType="text/html" pageEncoding="UTF-8"%> | |
<!DOCTYPE html> | |
<html> | |
<head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Recursao{ | |
public static void main(String args[]){ | |
metodo_recursivo(0); | |
} | |
public static void metodo_recursivo(int n){ | |
if(n == 1001) | |
return; | |
System.out.println(n % 100 == 0 ? "print" : n); |
NewerOlder