This file contains hidden or 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
<?php | |
$n = 0; | |
if(isset($_GET["n"])){ | |
$n = $_GET["n"]; | |
} | |
$r = 0; | |
$str = ""; | |
if($n != 0){ | |
for($i=1;$i<=$n;$i++){ |
This file contains hidden or 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
This is a test of gistCMD! |
This file contains hidden or 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
<!-- saved from url=(0025)http://magmastone.net/CS/ --> | |
<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> | |
<title>Computer Science - Alex Roth</title> | |
<link href="./Computer Science - Alex Roth_files/css" rel="stylesheet" type="text/css"> | |
<link href="./Computer Science - Alex Roth_files/index.css" rel="stylesheet" type="text/css"> | |
<script src="./Computer Science - Alex Roth_files/jquery.min.js"></script> | |
<script src="./Computer Science - Alex Roth_files/index.js"></script> | |
<style type="text/css"></style></head> | |
<body style="background-color: rgb(204, 204, 204);"> |
This file contains hidden or 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
<!-- saved from url=(0025)http://magmastone.net/CS/ --> | |
<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> | |
<title>Computer Science - Alex Roth</title> | |
<link href="./Computer Science - Alex Roth_files/css" rel="stylesheet" type="text/css"> | |
<link href="./Computer Science - Alex Roth_files/index.css" rel="stylesheet" type="text/css"> | |
<script src="./Computer Science - Alex Roth_files/jquery.min.js"></script> | |
<script src="./Computer Science - Alex Roth_files/index.js"></script> | |
<style type="text/css"></style></head> | |
<body style="background-color: rgb(204, 204, 204);"> |
This file contains hidden or 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
<?php | |
for($i=0;$i<9;$i++){ | |
echo "abc "; | |
} | |
?> |
This file contains hidden or 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
<?php | |
for($i=0;$i<9;$i++){ | |
echo "xyz "; | |
} | |
?> |
This file contains hidden or 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
<?php | |
for($i=0;$i<9;$i++){ | |
$x=$i+1; | |
echo "$x "; | |
} | |
?> |
This file contains hidden or 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
<?php | |
$alpha = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; | |
for($i=0;$i<6;$i++){ | |
$x=$alpha[$i]; | |
echo "Item $x<br>"; | |
} | |
?> |
This file contains hidden or 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
<?php | |
$n = 0; | |
if(isset($_GET["n"])){ | |
$n = $_GET["n"]; | |
} | |
$r = 0; | |
if($n != 0){ | |
for($i=1;$i<=$n;$i++){ | |
$r = $r + pow($i, 2); |
This file contains hidden or 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
<!-- saved from url=(0025)http://magmastone.net/CS/ --> | |
<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> | |
<title>Computer Science - Alex Roth</title> | |
<link href="./Computer Science - Alex Roth_files/css" rel="stylesheet" type="text/css"> | |
<link href="./Computer Science - Alex Roth_files/index.css" rel="stylesheet" type="text/css"> | |
<script src="./Computer Science - Alex Roth_files/jquery.min.js"></script> | |
<script src="./Computer Science - Alex Roth_files/index.js"></script> | |
<style type="text/css"></style></head> | |
<body style="background-color: rgb(204, 204, 204);"> |
OlderNewer