Skip to content

Instantly share code, notes, and snippets.

View andersonkrs's full-sized avatar
🏠
Working from home

Anderson Macedo andersonkrs

🏠
Working from home
View GitHub Profile

Keybase proof

I hereby claim:

  • I am andersonskm on github.
  • I am andersonskrs (https://keybase.io/andersonskrs) on keybase.
  • I have a public key ASBWNtJivW71E6KJWp7qIuTNafWRLi0brMM2yu4N3YuG2go

To claim this, I am signing this object:

@andersonkrs
andersonkrs / vim7.4
Created January 29, 2014 21:15 — forked from usufu/vim7.4
$ sudo add-apt-repository ppa:fcwu-tw/ppa
$ sudo apt-get update
$ sudo apt-get install vim
@andersonkrs
andersonkrs / Notas !
Last active December 16, 2015 06:39
Notas !
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
float notas[3] = {0};
float media = 0;
float media1sem = 0;
float media2sem = 0;
float total =0;
@andersonkrs
andersonkrs / Calculadora.c
Last active December 14, 2015 15:08
Esqueleto de uma calculadora
#include <stdio.h>
#include <stdlib.h>
int main()
{
float n1,n2;
char operador;
while(1)