Created
November 29, 2015 12:41
-
-
Save tomcha/8c10dd76903de0be946d to your computer and use it in GitHub Desktop.
19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
my $mod3 = 100 % 3; | |
my $mod7 = 100 % 7; | |
my $mod11 = 100 % 11; | |
print "100を3で割った時の余りは$mod3です。\n"; | |
print "100を7で割った時の余りは$mod7です。\n"; | |
print "100を11で割った時の余りは$mod11です。\n"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment