SlideShare a Scribd company logo
#include <ctype.h>
#include <iostream>
#include <fstream>
using namespace std;
float SUMAR (float n1=6, float n2=7.4)
{
float a;
a = n1 + n2;
return a;
}
float MULTIPLICAR (float n1=56, float n2=7.4)
{
float L;
L = n1 * n2;
return L;
}
int main()
{
cout << "La suma es: " << SUMAR();
cout<<endl;
cout << "La multiplicacion es: " <<
MULTIPLICAR();
cout<<endl;
system("PAUSE");
return 0;
}

More Related Content

DOCX
Tugas Program C++
PDF
3 rd animation
PDF
Operation Flow @ ChicagoRoboto
PPTX
Scripting ppt
PDF
GoでKVSを書けるのか
KEY
サイ本 文
PPTX
Scripting ppt
Tugas Program C++
3 rd animation
Operation Flow @ ChicagoRoboto
Scripting ppt
GoでKVSを書けるのか
サイ本 文
Scripting ppt

What's hot (20)

PDF
Rcpp11 genentech
PPT
FSE 2008
PDF
ZeroMQ Is The Answer
PDF
ZeroMQ Is The Answer: DPC 11 Version
PDF
Git avançado
PDF
Functional php
PDF
Rcpp11 useR2014
PDF
ZeroMQ: Messaging Made Simple
PPTX
Call stack, event loop and async programming
PDF
How to stand on the shoulders of giants
DOCX
timingExercise
PDF
All I know about rsc.io/c2go
DOCX
Listing modul 4
PPTX
PHP in 2018 - Q4 - AFUP Limoges
PDF
Jakub Kulhán - ReactPHP + Symfony = PROFIT (1. sraz přátel Symfony v Praze)
PDF
最近作ったN個のCPANモジュール Yokohama.pm #10
PPT
Function
PDF
Créer une base NoSQL en 1 heure
PDF
Clojure+ClojureScript Webapps
Rcpp11 genentech
FSE 2008
ZeroMQ Is The Answer
ZeroMQ Is The Answer: DPC 11 Version
Git avançado
Functional php
Rcpp11 useR2014
ZeroMQ: Messaging Made Simple
Call stack, event loop and async programming
How to stand on the shoulders of giants
timingExercise
All I know about rsc.io/c2go
Listing modul 4
PHP in 2018 - Q4 - AFUP Limoges
Jakub Kulhán - ReactPHP + Symfony = PROFIT (1. sraz přátel Symfony v Praze)
最近作ったN個のCPANモジュール Yokohama.pm #10
Function
Créer une base NoSQL en 1 heure
Clojure+ClojureScript Webapps
Ad

Viewers also liked (20)

DOCX
Mecanicanancanca
PDF
イノベーションを生む魔法の一言
PPTX
Presentación1
PPTX
Баг на wormix
PPTX
Habilidades y estrategias para la vida
PDF
Ficha pelicula
PDF
Análise do artigo: Affectiva-MIT Facial Expression Dataset (AM-FED): Natural...
PPTX
Slideshare VPU Sample Presentation
DOCX
PDF
90 degree angle gear drive, 90 degree drive gearbox to 200kw industrial, 90 d...
PDF
Gerencia publica y privada mariela
PPTX
VIRUS Y ANTIVIRUS INFORMÁTICOS.
PPT
Vitamin E dalam kelapa sawit
ODP
No al abuso de animales Que dice la biblia sobre el abuso a los animales.
PDF
GT_Final_Academic_Transcipt
PPT
Evangelios sinópticos
PPTX
Pengertian Kualitas Penduduk
PDF
PDF
Ie la-billetera-del-futuro1
DOCX
abhay resume
Mecanicanancanca
イノベーションを生む魔法の一言
Presentación1
Баг на wormix
Habilidades y estrategias para la vida
Ficha pelicula
Análise do artigo: Affectiva-MIT Facial Expression Dataset (AM-FED): Natural...
Slideshare VPU Sample Presentation
90 degree angle gear drive, 90 degree drive gearbox to 200kw industrial, 90 d...
Gerencia publica y privada mariela
VIRUS Y ANTIVIRUS INFORMÁTICOS.
Vitamin E dalam kelapa sawit
No al abuso de animales Que dice la biblia sobre el abuso a los animales.
GT_Final_Academic_Transcipt
Evangelios sinópticos
Pengertian Kualitas Penduduk
Ie la-billetera-del-futuro1
abhay resume
Ad

Jose dossantos.doc

  • 1. #include <ctype.h> #include <iostream> #include <fstream> using namespace std; float SUMAR (float n1=6, float n2=7.4) { float a; a = n1 + n2; return a; } float MULTIPLICAR (float n1=56, float n2=7.4) { float L; L = n1 * n2; return L; } int main() { cout << "La suma es: " << SUMAR(); cout<<endl; cout << "La multiplicacion es: " << MULTIPLICAR(); cout<<endl; system("PAUSE"); return 0; }