Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <stdio.h>
- #include <stdlib.h>
- using namespace std;
- int main(){
- /* ## Codigo ## ## Formato ## */
- // %c Caracter
- // %d Numero Decimal (INT)
- // %e Numero em notacao cientifica com o "e" Minusculo
- // %E Numero em notacao cientifica com o "E" Maiusculo
- // %f Ponto flutuante
- // %g Escolher automaticamente o melhor entr %f e %e
- // %G Escolher automaticamente o melhor entr %f e %e
- // %o Numero octal
- // %s String
- // %u Decimal sem sinal (unsigned)
- // %x Hexdcimal com letra minuscula
- // %X Hexdcimal com letra maiuscula
- // %% Imprime um %
- // %p Ponteiro
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement