Personal tools

rot13.c

#include <stdio.h>

main() /* streamlined version of copy input to output */
{
int c;

while ((c =getchar()) !=EOF)
{
if( c>= 97 && c <= 109 )
c=c+13;
else if( c >= 110 && c <= 122 )
c=c-13;
else if( c >= 65 && c <= 77 )
c=c+13;
else if( c >= 78 && c <= 90 )
c=c-13;
putchar(c);
}
}

Archived CPSR Information
Created before October 2004
Announcements

Sign up for CPSR announcements emails

Chapters

International Chapters -

> Canada
> Japan
> Peru
> Spain
          more...

USA Chapters -

> Chicago, IL
> Pittsburgh, PA
> San Francisco Bay Area
> Seattle, WA
more...
Why did you join CPSR?

I want to use my expertise to try to change the way the public sees the whole voting machine mess.