aula 02 lab - ambiente de trabalhoprofessor.ufabc.edu.br/.../pe-3q-2017/pe-aula02.pdf · aula 02...

20
1 Aula 02 Lab - Ambiente de trabalho MCTA028 – Programação Estruturada Prof. Jesús P. Mena-Chalco [email protected] 3Q-2017

Upload: others

Post on 23-Jul-2020

3 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Aula 02 Lab - Ambiente de trabalhoprofessor.ufabc.edu.br/.../pe-3q-2017/PE-aula02.pdf · Aula 02 Lab - Ambiente de trabalho MCTA028 – Programação Estruturada Prof. Jesús P. Mena-Chalco

1

Aula 02Lab - Ambiente de trabalho

MCTA028 – Programação Estruturada

Prof. Jesús P. Mena-Chalco

[email protected]

3Q-2017

Page 2: Aula 02 Lab - Ambiente de trabalhoprofessor.ufabc.edu.br/.../pe-3q-2017/PE-aula02.pdf · Aula 02 Lab - Ambiente de trabalho MCTA028 – Programação Estruturada Prof. Jesús P. Mena-Chalco

2

Plataforma de desenvolvimento (c9.io)

Page 3: Aula 02 Lab - Ambiente de trabalhoprofessor.ufabc.edu.br/.../pe-3q-2017/PE-aula02.pdf · Aula 02 Lab - Ambiente de trabalho MCTA028 – Programação Estruturada Prof. Jesús P. Mena-Chalco

3

Page 4: Aula 02 Lab - Ambiente de trabalhoprofessor.ufabc.edu.br/.../pe-3q-2017/PE-aula02.pdf · Aula 02 Lab - Ambiente de trabalho MCTA028 – Programação Estruturada Prof. Jesús P. Mena-Chalco

4

Page 5: Aula 02 Lab - Ambiente de trabalhoprofessor.ufabc.edu.br/.../pe-3q-2017/PE-aula02.pdf · Aula 02 Lab - Ambiente de trabalho MCTA028 – Programação Estruturada Prof. Jesús P. Mena-Chalco

5

Page 6: Aula 02 Lab - Ambiente de trabalhoprofessor.ufabc.edu.br/.../pe-3q-2017/PE-aula02.pdf · Aula 02 Lab - Ambiente de trabalho MCTA028 – Programação Estruturada Prof. Jesús P. Mena-Chalco

6

Page 7: Aula 02 Lab - Ambiente de trabalhoprofessor.ufabc.edu.br/.../pe-3q-2017/PE-aula02.pdf · Aula 02 Lab - Ambiente de trabalho MCTA028 – Programação Estruturada Prof. Jesús P. Mena-Chalco

7

Page 8: Aula 02 Lab - Ambiente de trabalhoprofessor.ufabc.edu.br/.../pe-3q-2017/PE-aula02.pdf · Aula 02 Lab - Ambiente de trabalho MCTA028 – Programação Estruturada Prof. Jesús P. Mena-Chalco

8

Page 9: Aula 02 Lab - Ambiente de trabalhoprofessor.ufabc.edu.br/.../pe-3q-2017/PE-aula02.pdf · Aula 02 Lab - Ambiente de trabalho MCTA028 – Programação Estruturada Prof. Jesús P. Mena-Chalco

9

Page 10: Aula 02 Lab - Ambiente de trabalhoprofessor.ufabc.edu.br/.../pe-3q-2017/PE-aula02.pdf · Aula 02 Lab - Ambiente de trabalho MCTA028 – Programação Estruturada Prof. Jesús P. Mena-Chalco

10

$ gcc hello­c­world.c 

$ ls ­ltotal 40­rw­rw­r­­ 1 ubuntu ubuntu   92 Aug 31 05:29 Makefile­rw­rw­r­­ 1 ubuntu ubuntu 1005 Aug 31 05:29 README.md­rwxr­xr­x 1 ubuntu ubuntu 8527 Sep 10 17:06 a.out*­rw­rw­r­­ 1 ubuntu ubuntu   84 Sep 10 17:02 hello­c­world.c­rwxr­xr­x 1 ubuntu ubuntu 8527 Sep 10 17:02 hello­c­world.c.o*­rw­rw­r­­ 1 ubuntu ubuntu   82 Aug 31 05:29 hello­cpp­world.cc

$ ./a.outHello World!

$ man ls$ man gcc

$ gcc hello­c­world.c ­o hello­c­world.exe$ ./hello­c­world.exe 

$ echo $?

Page 11: Aula 02 Lab - Ambiente de trabalhoprofessor.ufabc.edu.br/.../pe-3q-2017/PE-aula02.pdf · Aula 02 Lab - Ambiente de trabalho MCTA028 – Programação Estruturada Prof. Jesús P. Mena-Chalco

11

$ mkdir aula01$ mv *.* aula01$ cd aula01

$ htop

Page 12: Aula 02 Lab - Ambiente de trabalhoprofessor.ufabc.edu.br/.../pe-3q-2017/PE-aula02.pdf · Aula 02 Lab - Ambiente de trabalho MCTA028 – Programação Estruturada Prof. Jesús P. Mena-Chalco

12

Tipos de dados (tipos.c)

Size of char is      1 bytesSize of short is     2 bytesSize of int is       4 bytesSize of long is      8 bytesSize of float is     4 bytesSize of double is    8 bytesSize of long double is 16 bytes

$ uname ­aLinux xxxxxxxxx 4.2.0­c9 #1 SMP x86_64 x86_64 x86_64 GNU/Linux

Page 13: Aula 02 Lab - Ambiente de trabalhoprofessor.ufabc.edu.br/.../pe-3q-2017/PE-aula02.pdf · Aula 02 Lab - Ambiente de trabalho MCTA028 – Programação Estruturada Prof. Jesús P. Mena-Chalco

13

Sobre as listas de exercícios / atividades

Page 14: Aula 02 Lab - Ambiente de trabalhoprofessor.ufabc.edu.br/.../pe-3q-2017/PE-aula02.pdf · Aula 02 Lab - Ambiente de trabalho MCTA028 – Programação Estruturada Prof. Jesús P. Mena-Chalco

14

URI - Online

Registro obrigatório:

Crie uma conta no URI-Online:https://www.urionlinejudge.com.br

Faça seu cadastro no formulário:https://goo.gl/ERZdB1

Page 15: Aula 02 Lab - Ambiente de trabalhoprofessor.ufabc.edu.br/.../pe-3q-2017/PE-aula02.pdf · Aula 02 Lab - Ambiente de trabalho MCTA028 – Programação Estruturada Prof. Jesús P. Mena-Chalco

15

Page 16: Aula 02 Lab - Ambiente de trabalhoprofessor.ufabc.edu.br/.../pe-3q-2017/PE-aula02.pdf · Aula 02 Lab - Ambiente de trabalho MCTA028 – Programação Estruturada Prof. Jesús P. Mena-Chalco

16

Page 17: Aula 02 Lab - Ambiente de trabalhoprofessor.ufabc.edu.br/.../pe-3q-2017/PE-aula02.pdf · Aula 02 Lab - Ambiente de trabalho MCTA028 – Programação Estruturada Prof. Jesús P. Mena-Chalco

17

Page 18: Aula 02 Lab - Ambiente de trabalhoprofessor.ufabc.edu.br/.../pe-3q-2017/PE-aula02.pdf · Aula 02 Lab - Ambiente de trabalho MCTA028 – Programação Estruturada Prof. Jesús P. Mena-Chalco

18

Page 19: Aula 02 Lab - Ambiente de trabalhoprofessor.ufabc.edu.br/.../pe-3q-2017/PE-aula02.pdf · Aula 02 Lab - Ambiente de trabalho MCTA028 – Programação Estruturada Prof. Jesús P. Mena-Chalco

19

Page 20: Aula 02 Lab - Ambiente de trabalhoprofessor.ufabc.edu.br/.../pe-3q-2017/PE-aula02.pdf · Aula 02 Lab - Ambiente de trabalho MCTA028 – Programação Estruturada Prof. Jesús P. Mena-Chalco

20