Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

codigo sobre la suma de do numeros, Lecture notes of Computer science

codigo en lenguje C para programadores que apenas van iniciando

Typology: Lecture notes

2023/2024

Available from 08/03/2024

gladys-cordova-2
gladys-cordova-2 🇺🇸

1 document

Partial preview of the text

Download codigo sobre la suma de do numeros and more Lecture notes Computer science in PDF only on Docsity! #include<stdio.h> int main(){ float a,b; float x,y; printf("dame tu primer número"); scanf("%f",&a ); printf("dame tu segundo número"); scanf("%f",&b); x=a+b; y=a*b; printf("el resultado de la suma es:%.3f\n",x); printf("el resultado de la multiplicación es:%.3f\n",y); return 0; }