Skip to content

Instantly share code, notes, and snippets.

View cecinuga's full-sized avatar
💭
La complessità sta negl'occhi di chi non ha capito

matteommarchetti cecinuga

💭
La complessità sta negl'occhi di chi non ha capito
  • UniPisa
  • Pisa
  • 19:15 (UTC -12:00)
View GitHub Profile
@cecinuga
cecinuga / contatore_lettere.cpp
Last active April 29, 2018 11:07
Programma in c++ che restituisce informazioni sulla stringa data in input
#include <iostream>
#include <string>
using namespace std;
int n;
string frase;
void scambia(char &a, char &b){
char z;