Skip to content

Instantly share code, notes, and snippets.

View schweigert's full-sized avatar
🥝
λxy.x

Marlon Henry Schweigert schweigert

🥝
λxy.x
View GitHub Profile
#include <stdio.h>
int main (void){
// Variáveis!
int a, b, c;
return 0;
}
#include <stdio.h>
int main (void){
// Variáveis!
int a, b, c;
// Leitura dos Dados!
scanf ("%d %d", &a, &b);
return 0;
#include <stdio.h>
int main (void){
// Variáveis!
int a, b, c;
// Leitura dos Dados!
scanf ("%d %d", &a, &b);
// Armazenamento dos valores (A+B) em C
3
4
3
7 4
2 4 6
8 5 9 3
3
1
1 1
1 1 1
#include <stdio.h>
int Mat[100][100] = {0};
int Sun[100][100] = {0};
int Tam = 0;
void ResetSun (){
int i, j;
for (i = 0; i < 100; i++){
for (j = 0; j < 100; j++){
#include <stdio.h>
int main (void){
printf ("OBI na UDESC 2015!");
printf ("Seja bem vindo!");
return 0;
}
#include <stdio.h>
int main (void){
int Quantidade = 0;
scanf ("%d", &Quantidade);
printf ("%d\n",Quantidade);
int Cedulas = ( Quantidade - (Quantidade%100))/100;
printf ("%d nota(s) de R$ 100,00\n", Cedulas);
#include <stdio.h>
int main (void){
printf ("Ola Mundo!\n");
return 0;
}
#include <stdio.h>
int main(void){
// CONDICAO
if ( (2 == 2 || 2==3 || 2 > 3 || 2 < 3) & !(2<1)){
printf ("Olá mundo\n");
}
}