Buscar

upload_224b0b7a639b6b51613e0021616be83c (1)

Prévia do material em texto

PASSO a PASSO – DEV- C++ Professora ANITA MACIEL 
Tela Inicial 
 
Abrindo Guia para digitar seu programa – Parte 1 
 
PASSO a PASSO – DEV- C++ Professora ANITA MACIEL 
Abrindo Guia para digitar outro programa – Parte 2 
 
Abrindo Guia para digitar outro programa – Parte 3 
 
PASSO a PASSO – DEV- C++ Professora ANITA MACIEL 
Digitando seu PROGRAMA em uma das Guias 
#include <iostream> 
#include <cstdlib> 
using namespace std; 
int main() 
{ 
 cout << "\nUsando \\t para tabular\n"; 
 cout << "\n123456789012345678901234567890" << endl; 
 cout << "\nUsando\tpara\ttabular\n"; 
 system("pause"); //no Windows 
} 
Salvando seu PROGRAMA 
 
 
 
 
 
 
 
 
PASSO a PASSO – DEV- C++ Professora ANITA MACIEL 
Compilando e Executando 
 
 
 
PASSO a PASSO – DEV- C++ Professora ANITA MACIEL 
Aumentando a fonte e inserindo numeração de linhas