Si tienes alguna duda o agregame para platicar:
Facebook:https://www.facebook.com/Josue.Developer
Twitter: https://twitter.com/playground_100
sábado, 6 de septiembre de 2014
Juego conecta 4 en c#
Facebook:https://www.facebook.com/Josue.Developer
Twitter: https://twitter.com/playground_100
Editor de texto visual c#
Si tienes alguna duda o agregame para platicar:
Facebook:https://www.facebook.com/Josue.Developer
Twitter: https://twitter.com/playground_100
Facebook:https://www.facebook.com/Josue.Developer
Twitter: https://twitter.com/playground_100
Blog de notas C#
Si tienes alguna duda o agregame para platicar:
Facebook:https://www.facebook.com/Josue.Developer
Twitter: https://twitter.com/playground_100
Facebook:https://www.facebook.com/Josue.Developer
Twitter: https://twitter.com/playground_100
Teorema de Newton en c#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TeoremaDeNewton
{
class Program
{
static void Main(string[] args)
{
double n; //numero
double aprox; //aproximacion de la raiz cuadrada
double antaprox; //anterior aproximacion a la raiz cuadrada
double epsilon; //coeficiente de error
do
{
Console.Write("Número: ");
n = Convert.ToDouble(Console.Read());
}
while (n < 0);
do
{
Console.WriteLine("Raiz cuadrada aproximada: ");
aprox = Convert.ToDouble(Console.Read());
}
while (aprox <= 0);
do
{
Console.WriteLine("Coeficiente de error: ");
epsilon = Convert.ToDouble(Console.Read());
}
while (epsilon <= 0);
do
{
antaprox = aprox;
aprox = (n/antaprox + antaprox) / 2;
}
while (Math.Abs(aprox - antaprox) >= epsilon);
Console.WriteLine("La raiz cuadrada de {0:F2} es {1:F2}", n, aprox);
Console.ReadLine();
}
}
}
Si tienes alguna duda o agregame para platicar:
Facebook:https://www.facebook.com/Josue.Developer
Twitter: https://twitter.com/playground_100
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TeoremaDeNewton
{
class Program
{
static void Main(string[] args)
{
double n; //numero
double aprox; //aproximacion de la raiz cuadrada
double antaprox; //anterior aproximacion a la raiz cuadrada
double epsilon; //coeficiente de error
do
{
Console.Write("Número: ");
n = Convert.ToDouble(Console.Read());
}
while (n < 0);
do
{
Console.WriteLine("Raiz cuadrada aproximada: ");
aprox = Convert.ToDouble(Console.Read());
}
while (aprox <= 0);
do
{
Console.WriteLine("Coeficiente de error: ");
epsilon = Convert.ToDouble(Console.Read());
}
while (epsilon <= 0);
do
{
antaprox = aprox;
aprox = (n/antaprox + antaprox) / 2;
}
while (Math.Abs(aprox - antaprox) >= epsilon);
Console.WriteLine("La raiz cuadrada de {0:F2} es {1:F2}", n, aprox);
Console.ReadLine();
}
}
}
Si tienes alguna duda o agregame para platicar:
Facebook:https://www.facebook.com/Josue.Developer
Twitter: https://twitter.com/playground_100
Obtener codigo unicode de cada letra C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CUnicode
{
class Program
{
static void Main(string[] args)
{
int car = 0;
Console.WriteLine("Introduzca texto: ");
Console.WriteLine("Para terminar pulse Ctrl+z\n");
while ((car=Console.Read())>-1)
{
if (car != '\r' && car != '\n')
Console.WriteLine("El codigo unicode de "+ ( char)car+" es:"+ car);
}
Console.ReadLine();
}
}
}
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CUnicode
{
class Program
{
static void Main(string[] args)
{
int car = 0;
Console.WriteLine("Introduzca texto: ");
Console.WriteLine("Para terminar pulse Ctrl+z\n");
while ((car=Console.Read())>-1)
{
if (car != '\r' && car != '\n')
Console.WriteLine("El codigo unicode de "+ ( char)car+" es:"+ car);
}
Console.ReadLine();
}
}
}
Si tienes alguna duda o agregame para platicar:
Facebook:https://www.facebook.com/Josue.Developer
Twitter: https://twitter.com/playground_100
Pitagoras en c#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ctPitagoras
{
class Program
{
static void Main(string[] args)
{
//Teorema de pitagoras
int x = 1, y = 1, z = 0;
Console.WriteLine("Z\t" + "X\t" + "Y");
Console.WriteLine("__________________________");
while(x<50)
{
//cALCULAR Z.COMO Z ES UN ENTERO.ALMACENA
//LA PARTE ENTERA DE LA RAIZ CUADRADA
z = (int)Math.Sqrt(x*x+y*y);
while(y<=70 && z<=70)
{
//si la raiz anterior fue exacta
//escribir z,x e y
if (z * z == x * x + y * y)
Console.WriteLine(z+"\t" +x+" \t"+y);
y = y + 1;
z = (int)Math.Sqrt(x*x+y*y);
}
x=x+1;y=x;
}
Console.ReadLine();
}
}
}
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ctPitagoras
{
class Program
{
static void Main(string[] args)
{
//Teorema de pitagoras
int x = 1, y = 1, z = 0;
Console.WriteLine("Z\t" + "X\t" + "Y");
Console.WriteLine("__________________________");
while(x<50)
{
//cALCULAR Z.COMO Z ES UN ENTERO.ALMACENA
//LA PARTE ENTERA DE LA RAIZ CUADRADA
z = (int)Math.Sqrt(x*x+y*y);
while(y<=70 && z<=70)
{
//si la raiz anterior fue exacta
//escribir z,x e y
if (z * z == x * x + y * y)
Console.WriteLine(z+"\t" +x+" \t"+y);
y = y + 1;
z = (int)Math.Sqrt(x*x+y*y);
}
x=x+1;y=x;
}
Console.ReadLine();
}
}
}
Si tienes alguna duda o agregame para platicar:
Facebook:https://www.facebook.com/Josue.Developer
Twitter: https://twitter.com/playground_100
Convertir metros a pulgadas c#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace pulgadaMetro
{
class Program
{
static void Main(string[] args)
{
double metro, pulgada;
int contador;
Console.WriteLine("Conversión de metros a pulgada");
Console.WriteLine();
contador = 0;
for (pulgada = 1.0; pulgada <= 144.0; pulgada++)
{
metro = pulgada / 39.37;
Console.WriteLine(pulgada + " pulgadas esquivale a " + metro + " metros");
contador++;
if (contador == 12)
{
Console.WriteLine();
contador = 0;
}
}
Console.ReadLine();
}
}
}
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace pulgadaMetro
{
class Program
{
static void Main(string[] args)
{
double metro, pulgada;
int contador;
Console.WriteLine("Conversión de metros a pulgada");
Console.WriteLine();
contador = 0;
for (pulgada = 1.0; pulgada <= 144.0; pulgada++)
{
metro = pulgada / 39.37;
Console.WriteLine(pulgada + " pulgadas esquivale a " + metro + " metros");
contador++;
if (contador == 12)
{
Console.WriteLine();
contador = 0;
}
}
Console.ReadLine();
}
}
}
Si tienes alguna duda o agregame para platicar:
Facebook:https://www.facebook.com/Josue.Developer
Twitter: https://twitter.com/playground_100
Conversor de temperatura en c#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConversionTemperatura
{
class Program
{
static void Main(string[] args)
{
double f, c;
int contador;
contador = 0;
for (f = 0.0; f < 100.0; f++)
{
c = 5.0 / 9.0 * (f - 32.0);
Console.WriteLine(f + " grados Farenheitson " + c + " grados celsius");
contador++;
//cada 10 lineas insertara una linea en blanco
if (contador == 10)
{
Console.WriteLine();
contador = 0;//reinicia el contador
}
}
Console.ReadLine();
}
}
}
Si tienes alguna duda o agregame para platicar:
Facebook:https://www.facebook.com/Josue.Developer
Twitter: https://twitter.com/playground_100
Convertir mayusculas a minusculas y viceversa en c#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Ansii
{
class Program
{
static void Main(string[] args)
{
/* ESTE PROGRAMA CONVIERTE DE MINUSCULAR A MAYUSCULAS O VICEVERSA,SI EL
USUARIO INTRODUCE UN PUNTO;EL PROGRAMA SE DETIENE AUNTOMATICAMENTE.
*/
char ch;
int cambios = 0;
Console.WriteLine("Escriba un punto para detenerse");
do{
ch=(char) Console.Read();
if(ch>='a' && ch<='z')
{
ch-=(char)32;
cambios++;
Console.Write(ch);
}
else if (ch>='A' && ch<='Z'){
ch+=(char)32;
cambios++;
Console.Write(ch);
}
}while (ch !='.');
}
}
}
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Ansii
{
class Program
{
static void Main(string[] args)
{
/* ESTE PROGRAMA CONVIERTE DE MINUSCULAR A MAYUSCULAS O VICEVERSA,SI EL
USUARIO INTRODUCE UN PUNTO;EL PROGRAMA SE DETIENE AUNTOMATICAMENTE.
*/
char ch;
int cambios = 0;
Console.WriteLine("Escriba un punto para detenerse");
do{
ch=(char) Console.Read();
if(ch>='a' && ch<='z')
{
ch-=(char)32;
cambios++;
Console.Write(ch);
}
else if (ch>='A' && ch<='Z'){
ch+=(char)32;
cambios++;
Console.Write(ch);
}
}while (ch !='.');
}
}
}
Si tienes alguna duda o agregame para platicar:
Facebook:https://www.facebook.com/Josue.Developer
Twitter: https://twitter.com/playground_100
Metodo burbuja con cadenas c#
Hola este código te lo puedo proporcionar por:
Facebook:https://www.facebook.com/Josue.Developer
Twitter: https://twitter.com/playground_100
Facebook:https://www.facebook.com/Josue.Developer
Twitter: https://twitter.com/playground_100
Método de la burbuja en c#
Este ejemplo hace uso del metodo de la burbuja con cadena de texto:
using System.Threading.Tasks;
namespace BubbleCadenas
{
class Program
{
static void Main(string[] args)
{
string[] strs ={
"esto"," es"," un", " test",
" de"," un", " orden", " string" };
int a, b;
string t;
int size;
size = strs.Length; //cantidad de elementos a ordenar
//Muestra el arreglo original
Console.Write("El arreglo original es:");
for (int i = 0; i < size; i++)
Console.Write(""+strs[i]);
Console.WriteLine();
//esto es el orden bubble de las cadenas
for(a=1;a<size;a++)
for (b = size - 1; b >= a; b--)
{
if (strs[b - 1].CompareTo(strs[b]) > 0)
{
//cambia el orden de los elementos
t = strs[b - 1];
strs[b - 1] = strs[b];
strs[b] = t;
}
}
//Muestra el arreglo ordenado
Console.Write("El arreglo ordenado es:");
for (int i = 0; i < size; i++)
Console.Write(" "+strs[i]);
Console.WriteLine();
Console.ReadLine();
}
}
}
using System.Threading.Tasks;
namespace BubbleCadenas
{
class Program
{
static void Main(string[] args)
{
string[] strs ={
"esto"," es"," un", " test",
" de"," un", " orden", " string" };
int a, b;
string t;
int size;
size = strs.Length; //cantidad de elementos a ordenar
//Muestra el arreglo original
Console.Write("El arreglo original es:");
for (int i = 0; i < size; i++)
Console.Write(""+strs[i]);
Console.WriteLine();
//esto es el orden bubble de las cadenas
for(a=1;a<size;a++)
for (b = size - 1; b >= a; b--)
{
if (strs[b - 1].CompareTo(strs[b]) > 0)
{
//cambia el orden de los elementos
t = strs[b - 1];
strs[b - 1] = strs[b];
strs[b] = t;
}
}
//Muestra el arreglo ordenado
Console.Write("El arreglo ordenado es:");
for (int i = 0; i < size; i++)
Console.Write(" "+strs[i]);
Console.WriteLine();
Console.ReadLine();
}
}
}
Menu arboles binarios en c#
Hola este código te lo puedo proporcionar por
Facebook:https://www.facebook.com/Josue.Developer
Twitter: https://twitter.com/playground_100
Recorrido de arboles binarios c#
Hola este código te lo puedo proporcionar por Facebook:https://www.facebook.com/Josue.Developer
Twitter: https://twitter.com/playground_100
Arreglos paralelos c#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Arreglos_Pararelos
{
class Program
{
static void Main(string[] args)
{
int i;
float PROM = 0.0f;
float AC = 0;
string[] nombre = new string[30];
float[] calif = new float[30];
for (i = 0; i < 5; i++)
{
for (i = 0; i < 5; i++)
{
Console.WriteLine("Introduce el nombre: ");
nombre[i] = Convert.ToString(Console.ReadLine());
Console.WriteLine("Introduce tu calificacion: ");
calif[i] = float.Parse(Console.ReadLine());
AC += calif[i];
}
}
PROM = AC / 5;
Console.WriteLine("El promedio dle grupo es: " + PROM);
for (i = 0; i < 5; i++)
{
if (calif[i] < PROM)
{
Console.WriteLine("El nombre de los alumnos con calificacion menor al promedio: "+nombre[i]);
}
}
Console.ReadLine();
}
}
}
Comenta y sigueme MI TWITTER
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Arreglos_Pararelos
{
class Program
{
static void Main(string[] args)
{
int i;
float PROM = 0.0f;
float AC = 0;
string[] nombre = new string[30];
float[] calif = new float[30];
for (i = 0; i < 5; i++)
{
for (i = 0; i < 5; i++)
{
Console.WriteLine("Introduce el nombre: ");
nombre[i] = Convert.ToString(Console.ReadLine());
Console.WriteLine("Introduce tu calificacion: ");
calif[i] = float.Parse(Console.ReadLine());
AC += calif[i];
}
}
PROM = AC / 5;
Console.WriteLine("El promedio dle grupo es: " + PROM);
for (i = 0; i < 5; i++)
{
if (calif[i] < PROM)
{
Console.WriteLine("El nombre de los alumnos con calificacion menor al promedio: "+nombre[i]);
}
}
Console.ReadLine();
}
}
}
stack en c#
using System;
utilizando System.Collections.Generic;
utilizando System.Linq;
utilizando System.Text;
using System.Collections;
hola espacio de nombres
{
Programa de clases
{
static void Main (string [] args)
{
// las variables necesarias
int opcion = 0;
int numero = 0;
bool encontrado = false;
Pila miPila = new Stack ();
do
{
Console.WriteLine ("1-Insertar.");
Console.WriteLine ("2-ELIMINAR.");
Console.WriteLine ("pila Toda 3-ELIMINAR.");
Console.WriteLine ("4-Buscar.");
Console.WriteLine ("5-Salir.");
Console.WriteLine ("Dame tu opcion:");
opcion = int.Parse (Console.ReadLine ());
if (opcion == 1)
{
Console.WriteLine ("Dame el valor a introducir:");
numero = int.Parse (Console.ReadLine ());
miPila.Push (numero);
}
if (opcion == 2)
{
numero = (int) miPila.Pop ();
Console.WriteLine ("El valor obtenido es:" + numero);
}
if (opcion == 3)
{
miPila.Clear ();
}
si (== opcion 4)
{
Console.WriteLine ("dame el valor de un Contar:");
numero = int.Parse (Console.ReadLine ());
encontrado = miPila.Contains (numero);
Console.WriteLine ("encontrado {0}", encontrado);
}
Console.WriteLine ("El stack Tiene {0} Elementos", miPila.Count);
foreach (int n en miPila)
Console.Write ("{0}", n);
Console.WriteLine ("");
Console.WriteLine ("_______");
} While (opcion = 5!);
}
}
}
Tablas bidimensionales en c#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TablasBidimensionales
{
class Program
{
static void Main(string[] args)
{
int[,] Arreglo = new int[2, 10];
int i;
int j=0;
int tabla;
Console.WriteLine("Introduce un numero para mostara la tabla de multiplicar: ");
tabla = int.Parse(Console.ReadLine());
Console.ReadLine();
for (i = 0; i < 10; i++)
{
Arreglo[0, j] = tabla;
Arreglo[1, j] = (i+1) * tabla;
Console.WriteLine(Arreglo[0, j] + " * " +(i+1)+ "=" + Arreglo[1, j]);
} Console.Read();
}
}
}
Tablas de multiplicar en c++
#include <iostream>
#include <cstdio>
using namespace std;
void mul(int arg[], int length, int a){
for(int n=0;n<length;n++){
cout<<a<<" x "<<n<<" = "<<a*arg[n]<<"\n";
cout<<"\n";
}
getchar();
}
int main(){
int tabladel2[11] = {0,1,2,3,4,5,6,7,8,9,10};
int x;
cout<<"Escribe el numero de la tabla de multiplicar que quieres:"<<endl;
cin >> x;
cout<<"----------------------------------------------------------"<<endl;
mul(tabladel2,11,x);
cout<<"Fin de la tabla de Multiplicar del "<<x<<endl;
cout<<"Presione ENTER para salir";
getchar();
return 0;
}
Fibonacci en java
Sucesión de Fibonacci
En matemáticas, la sucesión de Fibonacci (a veces mal
llamada serie de Fibonacci) es la siguiente sucesión infinita denúmeros
naturales:
La sucesión comienza con los números 1 y 1,1 y a partir de
estos, «cada término es la suma de los dos anteriores», es la relación de
recurrencia que la define.
A los elementos de esta sucesión se les llama números de
Fibonacci. Esta sucesión fue descrita en Europa por Leonardo de Pisa,
matemático italiano del siglo XIII también conocido como Fibonacci. Tiene
numerosas aplicaciones en ciencias de la computación, matemáticas y teoría de
juegos.
package fibonacci;
import java.util.Scanner;
/**
* @author JOSUE
*/
public class Fibonacci {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
Scanner leer=new Scanner(System.in);
int c;
int a=0;
int b=1;
int numero,i;
System.out.print("Introduce un numero para fibonnaci: ");
numero=leer.nextInt();
for(i=0;i<numero;i++){
c=a+b;
a=b;
b=c;
System.out.print(" "+a);
}
// TODO code application logic here
}
}
Suscribirse a:
Entradas (Atom)