Skip to content

Instantly share code, notes, and snippets.

View gusthavosouza's full-sized avatar
🇮🇸
Working from 🇮🇸

Gustavo De Souza gusthavosouza

🇮🇸
Working from 🇮🇸
View GitHub Profile
@gusthavosouza
gusthavosouza / Crescente.java
Created September 2, 2013 14:03
Imprimir numeros do array em ordem crescente. utilizando sort.
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];
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
/*
Document : effect
Created on : 17/07/2013, 22:00:44
Author : Gustavo
Description:
Purpose of the stylesheet follows.
*/
.menu p {
text-decoration: #333333;
<%--
Document : rotation
Created on : 17/07/2013, 20:56:20
Author : Gustavo
--%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
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);