Lenguaje C (primera Parte)

  • November 2019
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Lenguaje C (primera Parte) as PDF for free.

More details

  • Words: 389
  • Pages: 6
ALBERTO DANIEL GARCIA NUÑEZ

UCOL

FACT. DE TELEMATICA 1G

PRACTICA 1 /*Alberto Daniel Garcia Nunez 1G*/ #include<stdio.h> #include main() { clrscr (); int a,b,c; float d; puts("Introduce el valor de A"); scanf("%d",&a); puts("Introduce el valor de B"); scanf("%d",&b); c=a+b; printf("%d+%d = %d\n",a,b,c); c=a-b; printf("%d-%d = %d\n",a,b,c); c=a*b; printf("%d*%d = %d\n",a,b,c); c=a/b; printf("%d/%d = %d\n",a,b,c); c=a%b; printf("%d modulo %d = %d\n",a,b,c); getche(); return 0; }

PRACTICA 2 /*Alberto Daniel Garcia Nunez 1G*/ #include<stdio.h> #include main() { clrscr(); int base,altura,area; puts("Introduce el valor de la base"); scanf("%d",&base); puts("Introduce el valor de la altura"); scanf("%d",&altura); area=base*altura/2; printf("El area es %d",area); getche(); return 0; } LENGUAJE C

ING. TELEMATICA

ALBERTO DANIEL GARCIA NUÑEZ

UCOL

FACT. DE TELEMATICA 1G

PRACTICA 3 /*Alberto Daniel Garcia Nunez 1G*/ #include<stdio.h> #include main() { clrscr(); int a,b; puts("Introduce un valor para A"); scanf("%d",&b); puts("Introduce un valor para B"); scanf("%d",&a); printf("A=%d B=%d",a,b); getche(); return 0; }

PRACTICA 4 /*Alberto Daniel Garcia Nunez 1G*/ #include<stdio.h> #include main() { clrscr(); float radio,pi,div,r,v; pi=3.14; div=.75; puts("Introduce el valor del radio"); scanf("%f",&radio); r=radio*radio*radio; v=div*pi*r; printf("El volumen es %.2f",v); getche(); return 0; }

PRACTICA 5 LENGUAJE C

ING. TELEMATICA

ALBERTO DANIEL GARCIA NUÑEZ

UCOL

FACT. DE TELEMATICA 1G

/*Alberto Daniel Garcia Nunez 1G*/ #include<stdio.h> #include #include<math.h> main() { clrscr(); float a,b,c,x1,x2; puts("Valor de A: "); scanf("%f",&a); puts("Valor de B: "); scanf("%f",&b); puts("Valor de C: "); scanf("%f",&c); if(((b*b)-(4*a*c))>0) { x1=(float)(((-1)*b)+(sqrt((b*b)-(4*a*c))))/2; x2=(float)(((-1)*b)-(sqrt((b*b)-(4*a*c))))/2; printf("X1 = %.2f\n",x1); printf("X2 = %.2f\n",x2); } else {puts("ERROR: La ecuacion no tiene resultado.");} getche(); return 0; }

PRACTICA 6 /*Alberto Daniel Garcia Nunez 1G*/ LENGUAJE C

ING. TELEMATICA

ALBERTO DANIEL GARCIA NUÑEZ

UCOL

FACT. DE TELEMATICA 1G

#include<stdio.h> #include main() { clrscr (); int a; puts("Introduce un valor para a"); scanf("%d",&a); if (a==0) printf("%d es cero",a); else if (a<0) printf("%d es negativo",a); else printf("%d es positivo",a); getche(); return 0; }

PRACTICA 7 /*Alberto Daniel Garcia Nunez 1G*/ #include<stdio.h> LENGUAJE C

ING. TELEMATICA

ALBERTO DANIEL GARCIA NUÑEZ

UCOL

FACT. DE TELEMATICA 1G

#include main() { clrscr (); int a; a=0; do { printf("%d\n",a); ++a; } while (a<101); getche(); clrscr(); a=0; while(a<101) { printf("%d\n",a); ++a; } getche(); clrscr(); for (a=0; a<101;++a) printf("%d\n",a); getche(); return 0; }

LENGUAJE C

ING. TELEMATICA

ALBERTO DANIEL GARCIA NUÑEZ

UCOL

FACT. DE TELEMATICA 1G

ING. TELEMATICA

UNIVERSIDAD DE COLIMA FACULTAD DE TELEMATICA

INGENIERIA EN TELEMATICA

1G

LENGUAJE C Alumno: NUÑEZ

ALBERTO DANIEL GARCIA

Profesor: ROMAN GALLARDO ARMANDO 21/Noviembre/2008

LENGUAJE C

Related Documents

Lenguaje C (primera Parte)
November 2019 15
Lenguaje C (segunda Parte)
November 2019 28
Primera Parte
July 2020 31
Primera Parte
October 2019 43
Primera Parte
November 2019 46
Primera Parte
May 2020 32