Skip to content

Instantly share code, notes, and snippets.

View ZNickq's full-sized avatar

Zloteanu Nichita ZNickq

  • Bucharest, Romania
View GitHub Profile
@ZNickq
ZNickq / CControl
Created June 11, 2012 10:24
Cifra de control a unui numar
#include<stdio.h>
using namespace std;
int cate_cifre(int check) {
int rasp = 0;
while(check>0) {
check/=10;
rasp++;
}
return rasp;
}