Alguien sabe si se puede cambiar de ese asqueroso unity a gnome 2?? la version del gnome 3 tampoco me gusta
alguien sabe si ya es posible cambiar?
alguien sabe si ya es posible cambiar?
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú
GNU nano 2.2.4 Fichero: menu
while (true)
do
echo "digite una tecla para continuar"
read ENTER
clear
echo "a calendario"
echo "b. hora"
echo "c. para imprimir mensaje"
echo "d. ver discos"
echo "e. procesos"
echo "q. para salir"
echo "DIGITE OPCION "
read OPC
case $OPC in
a) cal ;;
b) date ;;
c) printf "imprimiendo, gracias vuelva pronto.... \n\n";;
d) df -v;;
e) ps -lh;;
q) break;;
esac
done
package guiDoxa;
import datos.Crea_Usuario;
import funcion.Archivo;
import javax.swing.JOptionPane;
public class Ventana extends javax.swing.JFrame {
.
.
.
private void loginActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
Crea_Usuario nuevoUser = new Crea_Usuario();
Archivo referencia = new Archivo();
Object obj = referencia.leer(""+nuevoUser.getId());
System.out.println(nuevoUser.getId());
Crea_Usuario referenciar = (Crea_Usuario)obj;
String seleccion = JOptionPane.showInputDialog(
null,
"NOMBRE DE USUARIO",
JOptionPane.QUESTION_MESSAGE);
if (seleccion.equals("profesor") || seleccion.equals(referenciar)){
Calificacion VentanitaUser = new Calificacion();
new Calificacion().setVisible(true);
}
else{
JOptionPane.showMessageDialog(null,
"ERROR, NO EXISTE USUARIO");
}
}
private void crearUsuarioActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
Usuario nuevoUser = new Usuario();
new Usuario().setVisible(true);
}
.
.
.
package funcion;
import java.io.*;
public class Archivo {
public boolean guardar(Object ob, String archivo){
{
ObjectOutputStream is = null;
try{
FileOutputStream fis = new FileOutputStream(archivo);
is = new ObjectOutputStream(fis);
is.writeObject(ob);
is.close();
fis.close();
return true;
}catch(FileNotFoundException ex){
System.out.println("ARCHIVO NO ENCONTRADO");
}catch(IOException ex){
System.out.println("ARCHIVO NO SE ALMACENARA");
}
}
return false;
}
public Object leer(String archivo){
try{
FileInputStream fis = new FileInputStream(archivo);
ObjectInputStream is = new ObjectInputStream(fis);
Object objeto = (Object)is.readObject();
is.close();
fis.close();
return objeto;
} catch(ClassNotFoundException ex){
System.out.println("NO SE PUEDE CREAR OBJETO LEIDO");
}catch(FileNotFoundException ex){
System.out.println("NO SE ENCUENTRA EL ARCHIVO");
}catch(IOException ex){
System.out.println("NO SE CREARA EL OBJETO POR ESTAR VACIO");
}
return null;
}
}
package datos;
import java.io.Serializable;
public class Crea_Usuario implements Serializable{
private String nombre;
private String apellido;
private int edad;
private int id;
private String semestre;
private Double promedio;
//Encapsulamiento
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package pruebas;
import datos.Universidad;
import datos.Estudiante;
import utilidades.Operaciones;
/**
*
* @author dato000
*/
public class main {
public static void main(String[] args) {
System.out.println("PRUEBA DE SERIALIZACION POR dato000");
//creacion del objeto universidad para crear el estudiante
Universidad u = new Universidad();
u.setCodigo(25);
u.setDireccion("Ciudad Tunal");
u.setNombre("La Libre Bosque Popular");
//Datos del estudiante y creacion del objeto universidad
Estudiante e = new Estudiante();
e.setCodigo(534);
e.setNombre("Dave Mustaine");
e.setNota1(3.3);
e.setUniversidad(u);
//Invocamos la clase operaciones para guardar,
//enviar el objeto estudiante
Operaciones op = new Operaciones();
boolean creado = op.guardar(e, ""+e.getCodigo());
if(creado)
System.out.println("ARCHIVO FUE CREADO EXITOSAMENTE");
Object obj = op.leer("534");
//Convertir el objeto en estudiante
Estudiante nuevoEstudio = (Estudiante)obj;
System.out.println("DATOS LEIDOS DEL ESTUDIANTE");
System.out.println("NOMBRE DEL ESTUDIANTE: "+nuevoEstudio.getNombre());
System.out.println("NOTA DEL ESTUDIANTE: "+nuevoEstudio.getNota1());
System.out.println("NOMBRE UNIVERSIDAD DEL ESTUDIANTE: "+nuevoEstudio.getUniversidad().getNombre());
System.out.println("DIRECCION DEL ESTUDIANTE: "+nuevoEstudio.getUniversidad().getDireccion());
}
}
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package utilidades;
import java.io.*;
/**
*
* @author dato000
*/
public class Operaciones {
public boolean guardar(Object ob, String archivo){
{
ObjectOutputStream is = null;
try{
FileOutputStream fis = new FileOutputStream(archivo);
is = new ObjectOutputStream(fis);
is.writeObject(ob);
is.close();
fis.close();
return true;
}catch(FileNotFoundException ex){
System.out.println("ARCHIVO NO ENCONTRADO");
}catch(IOException ex){
System.out.println("ARCHIVO NO SE ALMACENARA");
}
}
return false;
}
public Object leer(String archivo){
try{
FileInputStream fis = new FileInputStream(archivo);
ObjectInputStream is = new ObjectInputStream(fis);
Object objeto = (Object)is.readObject();
is.close();
fis.close();
return objeto;
} catch(ClassNotFoundException ex){
System.out.println("NO SE PUEDE CREAR OBJETO LEIDO");
}catch(FileNotFoundException ex){
System.out.println("NO SE ENCUENTRA EL ARCHIVO");
}catch(IOException ex){
System.out.println("NO SE CREARA EL OBJETO POR ESTAR VACIO");
}
return null;
}
}
package javaapplication2;
import java.awt.*;
import javax.swing.*;
public class Main extends JFrame
{
public void Window()
{
this.setSize(400,500);
this.setTitle("Primer Aplicacion Swing");
this.setVisible(true);
}
public static void main(String []args)
{
Window();
JFrame jFrameWindow = new JFrame();
jFrameWindow.setSize(400,500);
/* se puede sustituir por pack() para
* que java calcule automaticamente el tama\~no
* que necesita.
*/
jFrameWindow.setTitle("Segunda Aplicacion Swing");
jFrameWindow.setVisible(true);
}
}
#include <iostream>
#include <stdio.h>
#include <D:\Camilo\Unilibre\Quinto Semestre\Sistemas Operativos\Ejercicios\Primer Corte\particionfija.h>
/*
MANUEL CAMILO CEPEDA MARTINEZ 066091006
ERIKA CALDAS CODIGO 066062003
PARTICION FIJA PEOR AJUSTE - VERSION 1.0
SISTEMAS OPERATIVOS
UNIVERSIDAD LIBRE DE COLOMBIA
*/
using namespace std;
int main(){
int opcion;
//MENU DE BIENVENIDA
printf("\t\t BIENVENIDO: ");
printf("OPCIONES \n\n");
printf("\t 1. PARTICION FIJA \n");
printf("\t 2. SALIDA \n\n");
printf("digite una de las opciones: ");
scanf( "%i", &opcion);
switch (opcion){
case 1:
printf("PARTICION FIJA \n\n");
printf("NO HAY RELOCALIZACION \n\n");
partFija();
break;
case 2:
printf("adios!!!! buen dia!!!");
getchar();
break;
default:
printf("ERROR DIGITANDO DATOS, EL PROGRAMA ESTALLARA!! ARRGHHH!!\n\n");
getchar();
break;
}
getchar();
return EXIT_SUCCESS;
}
void partFija();
void partFija(){
int t[5];
int p[5]={20,15,20,10,30};
int contador=30;
printf("HOLA!!\n\n");
//IMAGEN DE PARTICIONES
printf("\n\n");
printf("PARTICION FIJA MEDIDA LOCALIZACION\n");
printf("------------------- 0\n");
printf("| SO | \n");
printf("------------------- 30 %i\n", contador);
for(int i=0; i<5; i++){
contador += p[i];
printf("| p%i | \n", i+1);
printf("------------------- %i %i\n", p[i], contador);
}
//INGRESO DE TAREAS
printf("5 TAREAS MAXIMO \n\n");
for(int i=0; i<5; i++){
printf("TAREA %i: ", i+1); scanf( "%i", &t[i]);
}
//INGRESO DE TAREAS EN PARTICIONES
contador=30;
printf("\n\n");
printf("PARTICION FIJA MEDIDA LOCALIZACION\n");
printf("------------------- 0\n");
printf("| SO | \n");
printf("------------------- 30 %i\n", contador);
for(int i=0; i<5; i++){
if(t[i]==0){
contador += p[i];
printf("| p%i | \n", i+1);
printf("| *********** | \n");
printf("| LIBRE: %i | \n", p[i]);
printf("------------------- %i %i\n", p[i], contador);
}
else{
contador += p[i];
printf("| p%i | \n", i+1);
printf("| *********** | \n");
printf("| Frag: %i | \n", p[i]-t[i]);
printf("------------------- %i %i\n", p[i], contador);
}
}
//PEOR AJUSTE
do{
contador=30;
fflush(stdin);
printf("\n\nQUE TAREA DESEA ELIMINAR?? \n (Digite solo el numero de la tarea) ");
int borrar; scanf( "%i", &borrar);
if(borrar == 1)
t[0]=0;
else if(borrar == 2)
t[1]=0;
else if(borrar == 3)
t[2]=0;
else if(borrar == 4)
t[3]=0;
else if(borrar == 5)
t[4]=0;
printf("PARTICION FIJA MEDIDA LOCALIZACION\n");
printf("------------------- 0\n");
printf("| SO | \n");
printf("------------------- 30 %i\n", contador);
for(int i=0; i<5; i++){
//IMAGEN DE PARTICIONES FIJAS CON TAREA RETIRADA
if(t[i]==0){
contador += p[i];
printf("| p%i | \n", i+1);
printf("| *********** | \n");
printf("| LIBRE: %i | \n", p[i]);
printf("------------------- %i %i\n", p[i], contador);
}
else{
contador += p[i];
printf("| p%i | \n", i+1);
printf("| *********** | \n");
printf("| Frag: %i | \n", p[i]-t[i]);
printf("------------------- %i %i\n", p[i], contador);
}
}
//El programa pregunta si quiere continuar
char opc;
fflush(stdin);
printf("\n\n\nDESEA RETIRAR OTRA TAREA?? (S/N) ");
scanf("%c", &opc);
if(opc=='n' or opc=='N')
break;
}while(true);
getchar();
}
#include <iostream>
#include <stdio.h>
using namespace std;
int main(){
int opcion;
void partFija();
void partDinamica();
//MENU DE BIENVENIDA
printf("\t\t BIENVENIDO: ");
printf("OPCIONES \n\n");
printf("\t 1. PARTICION FIJA \n");
printf("\t 2. PARTICION DINAMICA \n");
printf("\t 3. SALIDA \n\n");
printf("digite una de las opciones: ");
scanf( "%i", &opcion);
switch (opcion){
case 1:
printf("PARTICION FIJA \n\n");
printf("NO HAY RELOCALIZACION \n\n");
partFija();
break;
case 2:
printf("PARTICION DINAMICA \n\n");
partDinamica();
break;
case 3:
break;
}
getchar();
return EXIT_SUCCESS;
}
void partFija(){
int t[5];
int p[5]={20,15,20,10,30};
printf("HOLA!!\n\n");
//IMAGEN DE PARTICIONES
printf("\n\n");
printf("PARTICION FIJA\n");
printf("------------------- 0\n");
printf("| SO | \n");
printf("------------------- 30\n");
for(int i=0; i<5; i++){
printf("| p%i | \n", i+1);
printf("------------------- %i\n", p[i]);
}
//INGRESO DE TAREAS
printf("5 TAREAS MAXIMO \n\n");
for(int i=0; i<5; i++){
printf("TAREA %i: ", i+1); scanf( "%i", &t[i]);
}
//INGRESO DE TAREAS EN PARTICIONES
printf("\n\n");
printf("PARTICION FIJA\n");
printf("------------------- 0\n");
printf("| SO | \n");
printf("------------------- 30\n");
for(int i=0; i<5; i++){
if(t[i]==0){
printf("| p%i | \n", i+1);
printf("| *********** | \n");
printf("| LIBRE: %i | \n", p[i]);
printf("------------------- %i\n", p[i]);
}
else{
printf("| p%i | \n", i+1);
printf("| *********** | \n");
printf("| Frag: %i | \n", p[i]-t[i]);
printf("------------------- %i\n", p[i]);
}
}
do{
********************************************PROBLEMA!!!!**************
printf("\n\nQUE TAREA DESEA ELIMINAR?? ");
char t_borrar[2]; scanf( "%s", t_borrar);
printf("------------------- 0\n");
printf("| SO | \n");
printf("------------------- 30\n");
for(int i=0; i<5; i++){
if(t[i]==atoi(t_borrar)){
t[i]=0;
}
//IMAGEN DE PARTICIONES FIJAS CON TAREA RETIRADA
if(t[i]==0){
printf("| p%i | \n", i+1);
printf("| *********** | \n");
printf("| LIBRE: %i | \n", p[i]);
printf("------------------- %i\n", p[i]);
}
else{
printf("| p%i | \n", i+1);
printf("| *********** | \n");
printf("| Frag: %i | \n", p[i]-t[i]);
printf("------------------- %i\n", p[i]);
}
}
*****************************HASTA AQUI COMO LE HAGO???*******************
//El programa pregunta si quiere continuar
char opc;
fflush(stdin);
printf("\n\n\nDESEA RETIRAR OTRA TAREA?? (S/N) ");
scanf("%c", &opc);
if(opc=='n' or opc=='N')
break;
printf("\n\n");
}while(true);
getchar();
}
void partDinamica(){
printf("HOLA!! particion dinamica\n\n");
getchar();
}
/*
* Manuel Camilo Cepeda Martinez
* 066091006 Unilibre
*/
package unilibre;
import datos.Dimension;
import datos.Punto;
import io.Lecturas;
import javax.swing.JFrame;
import math.Operaciones;
/**
*
* @author dato000
*/
public class ejercicio2 extends JFrame{
public static void main(String[] args){
//restar y dividir
Operaciones uno = new Operaciones();
int restar = uno.sumar(145, 138);
System.out.println(restar);
double dividir = uno.multiplicar(1223, 13);
System.out.println(dividir);
double div = (double)8 / 14;
System.out.println(div);
//punto
Punto micro = new Punto(205,205);
int pX = micro.getX();
int pY = micro.getY();
void escribirpx = micro.setX(pX);----AQUI!!
void escribirpy = micro.setY(pY);----AQUI!!
//dimension
Dimension bien = new Dimension(500, 500);
int altura = bien.getAlto();
int anchura = bien.getAncho();
void editar_alt = bien.setAlto(x); ----AQUI!!
void editar_anc = bien.setAncho(y); ----AQUI!!
//lectura
Lecturas luna1 = new Lecturas();
String dataso1 = luna1.leerdato();
JFrame cuadro1 = luna1.crearVentana(dataso1);
JFrame cuadro2 = luna1.crearVentana(dataso1, micro);
JFrame cuadro3 = luna1.crearVentana(dataso1, micro, bien);
JFrame ventana = new JFrame(); ----AQUI!!
mostrar = luna1.visualizarVentana(cuadro3); ----AQUI!!
}
}
java.lang.Error: Unresolved compilation problems:
Access restriction: The type JFrame is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The type JMenuBar is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The type JMenu is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The type JMenuItem is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The type JLabel is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The type JPanel is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The type JLabel is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The type JLabel is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The method getContentPane() from the type JFrame is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The constructor JPanel() is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The type JPanel is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The type ImageIcon is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The constructor ImageIcon(String) is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The type ImageIcon is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The constructor JLabel(Icon) is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The type JLabel is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The constructor JLabel(String) is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The type JLabel is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The constructor JLabel(String) is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The type JLabel is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The constructor JMenuBar() is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The type JMenuBar is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The constructor JMenu(String) is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The type JMenu is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The constructor JMenuItem(String) is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The type JMenuItem is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The constructor JMenuItem(String) is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The type JMenuItem is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The constructor JMenuItem(String) is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The type JMenuItem is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The method add(JMenuItem) from the type JMenu is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The method add(JMenuItem) from the type JMenu is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The method addSeparator() from the type JMenu is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The method add(JMenuItem) from the type JMenu is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The method add(JMenu) from the type JMenuBar is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The method addActionListener(ActionListener) from the type AbstractButton is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The method addActionListener(ActionListener) from the type AbstractButton is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
OptionPane cannot be resolved
campo cannot be resolved
Access restriction: The method setDefaultCloseOperation(int) from the type JFrame is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The type JFrame is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
Access restriction: The field EXIT_ON_CLOSE from the type JFrame is not accessible due to restriction on required library C:\Archivos de programa\Java\j2re1.4.2_03\lib\rt.jar
at claseprog1.Main.<init>(Main.java:7)
at claseprog1.Main.main(Main.java:98)
Exception in thread "main"
package unilibre;
import javax.swing.*;
import java.io.*;
import java.util.Date;
/**
*
* Manuel Camilo Cepeda Martinez 066091006
*/
public class UArchivos {
String nombrearchivo="camilo cepeda 066091006";
String ruta_1="cualquier sitio";
String contenido_1="teorico";
leerArchivo nuevo= new leerArchivo(nombrearchivo, ruta_1);
public void leerArchivo(String nombreArchivo, String ruta) {
nombreArchivo = nombrearchivo;
ruta = ruta_1;
System.out.println(nombreArchivo);
System.out.println(ruta);
}
/*public void crearArchivo(String nombreArchivo, String ruta, String contenido) {
try
{
File archivo = new File(JOptionPane.showInputDialog("Nombre del archivo"));
fos=new FileOutputStream(archivo,true);
dos=new DataOutputStream(fos);
do
dos.writeInt(leerArchivo("practica1", "practica2"));
while(JOptionPane.showConfirmDialog(null,"Continuar")==0);
}
catch(IOException e)
{
JOptionPane.showMessageDialog(null,"error");
}
try
{
if(fos!=null)
fos.close();
}
catch(IOException e)
{
JOptionPane.showMessageDialog(null,"Error al cerrar archivo");
}
}*/
public static void main(String[] args) {
new UArchivos();
//void funcioncrear= new crearArchivo("Ensayo", "UNILIBRE D:", "Contenido caracter");
//leerArchivo("Ensayo", "UNILIBRE D:");
}
}
Citar
dhcppc2 login: [28. 265498] ICMPv6 NA: some advertises our address on wlan0
[36. 443686] eth0: link down
[36. 443948] ADDRCONF (NETDEV_UP): link is not ready
[36. 925453] wlan0: duplicate address detected!
dhcppc2 login: Debian GNU/Linux 5.0 dhcppc2 tty1
#include "iostream"
#include "conio.h"
using namespace std;
char numero_decimal(int N,int base)
{
if(base<2||base>16){
cout << " LA BASE NO ESTA ENTRE LOS VALORES PERMITIDOS!!" << endl;
}
else{
if(N<base){
cout << N;
}
else{
cout << N%base;
return numero_decimal(N/base, base);
}
}
}
int main()
{
int N,B;
cout<<"Ingrese numero en base decimal (10) para empezar la conversion: ";
cin>>N;
cout<<"*** DEBE ESTAR EN EL RANGO 2 a 16***" << endl;
cout<<"Ingrese base: ";
cin>>B;
cout<<"El numero en la base " << B<< " es:"; cout<<numero_decimal (N,B);
cout<<endl;
system("PAUSE");
return 0;
}
#include "iostream"
#include "conio.h"
using namespace std;
int suma(int a){
if(a==1)
return 1;
else{
cout << a-1 << " + " << suma(a-1) << " + ";
}
}
int main()
{
int num;
cout<<"Ingrese el numero para entregar las sumas: ";
cin>>num;
cout << suma(num);
cout<<endl;
system("PAUSE");
return EXIT_SUCCESS;
}