Yommy

Status
Not open for further replies.
[cbox]<?php

$names = array("Jezu","dastgirpojee","JayPee","nanakiwurtz","hemagx","malufett","pr3p","nndsl","Zopokx","Vali","Virtue","M45T3R","Michieru","Judas","Beret","Yommy");

echo "Hi ";

foreach($names as $value) {

if ($value != "Yommy") {

echo $value." & ";

}

elseif ($value == "Yommy") {

echo $value.", ";

}

}

echo "I'm Jman.";

?>[/cbox]
/me joins the trend, in c.
Code:
int main(int argc, char **argv) {	const char* peepz[17] = {	"Jezu","dastgirpojee","JayPee","nanakiwurtz","hemagx","malufett","pr3p","nndsl","Zopokx","Vali","Virtue","M45T3R","Michieru","Judas","Beret","Yommy","Jman"	};	int i;	for(i = 0; i < 17; i++) {		if( i != 16 )			printf("%s & ",peepz[i]);		else			printf("%s , ",peepz[i]);	}	printf("I'm Ind"); return 0;}
/me does java version

Code:
public class Hello{	public	static	void	main(String[] args){		int i;		String[] names = {"Jezu","dastgirpojee","JayPee","nanakiwurtz","hemagx","malufett","pr3p","nndsl","Zopokx","Vali","Virtue","M45T3R","Michieru","Judas","Beret","Yommy","Jman","Ind"};		System.out.print("Hi");				for(i = 0; i < names.length; i++){			System.out.print(" "+names[i]);			if(i != (names.length-1))				System.out.print(" &");			if(i == (names.length-1))				System.out.print(".n");		}		System.out.print("I'm Streusel.");	}}
 
Last edited by a moderator:
Python?
[cbox]
#!/usr/bin/python
names = ["Jezu","dastgirpojee","JayPee","nanakiwurtz","hemagx","malufett","pr3p","nndsl","Zopokx","Vali","Virtue","M45T3R","Michieru","Judas","Beret","Yommy","Ind","Nameless2you"]
print "Hello "
for name in names:
 while name != "Nameless2you":
print name, " & "
 else:
print name, ", "
print "I'm Jman (again)"[/cbox]

 
internet,0,0,0   script Squishyyy 45,{ mes "[^FF0000Squishyyy^000000]"; setarray(.@names$[0],"Jezu","dastgirpojee","JayPee","nanakiwurtz","hemagx","malfuett","pr3p","nndsl","Zopokx","Vali","Virtue","M45T3R","Michieru","Judas","Beret","Yommy"; if(strcharinfo(0) == getarraysize(.@names$[0])) {   mes "Hello World";   close; }else { mes "Hello." end; }}
been a while since I scripted...anyone want to fix that XD;;?

 
@recallall

Hello! I'm Kyeme
default_smile.png


 
@kickall!!! HAHAHAHAH 

Hello!  I'm Frost!
default_smile.png


 
Code:
<?php$peeps = array("Jezu","dastgirpojee","JayPee","nanakiwurtz","hemagx","malfuett","pr3p","nndsl","Zopokx","Vali","Virtue","M45T3R","Michieru","Judas","Beret","Yommy");echo "Hello ". implode(', ', $peeps) .'. I am Latheesan.';?>
 
[cbox]<?php

$names = array("Jezu","dastgirpojee","JayPee","nanakiwurtz","hemagx","malufett","pr3p","nndsl","Zopokx","Vali","Virtue","M45T3R","Michieru","Judas","Beret","Yommy");

echo "Hi ";

foreach($names as $value) {

if ($value != "Yommy") {

echo $value." & ";

}

elseif ($value == "Yommy") {

echo $value.", ";

}

}

echo "I'm Jman.";

?>[/cbox]
/me joins the trend, in c.int main(int argc, char **argv) { const char* peepz[17] = { "Jezu","dastgirpojee","JayPee","nanakiwurtz","hemagx","malufett","pr3p","nndsl","Zopokx","Vali","Virtue","M45T3R","Michieru","Judas","Beret","Yommy","Jman" }; int i; for(i = 0; i < 17; i++) { if( i != 16 ) printf("%s & ",peepz); else printf("%s , ",peepz); } printf("I'm Ind"); return 0;}

/me does java version

Code:
public class Hello{	public	static	void	main(String[] args){		int i;		String[] names = {"Jezu","dastgirpojee","JayPee","nanakiwurtz","hemagx","malufett","pr3p","nndsl","Zopokx","Vali","Virtue","M45T3R","Michieru","Judas","Beret","Yommy","Jman","Ind"};		System.out.print("Hi");				for(i = 0; i < names.length; i++){			System.out.print(" "+names[i]);			if(i != (names.length-1))				System.out.print(" &");			if(i == (names.length-1))				System.out.print(".n");		}		System.out.print("I'm Streusel.");	}}
C# version : 

Code:
static void Main(string[] args)        {            string[] names = {"Yommy","Beret", "Judas", "hemagx", "Michieru", "M45T3R", "Virtue", "Vali", "Zopokx", "nndsl", "pr3p", "malufett",                              "hemagx", "nanakiwurtz", "JayPee", "dastgirpojee", "Jezu", "Jman", "Ind", "Nameless2you", "Squishyyy", "kyeme",                             "Frost", "MStream", "latheesan", "clydelion"};            string name = "Patskie";            for (int i = 0; i < names.Length; i++)            {                Console.WriteLine("Hello {0}, i am {1}", names[i], name);            }            Console.ReadLine();        }
 
Status
Not open for further replies.
Back
Top