The Drew Carey Show Wiki
(lol nothing)
Tag: Visual edit
No edit summary
Tag: Visual edit
Line 1: Line 1:
  +
{{Infobox character
<nowiki>#</nowiki>include<iostream.h>
 
 
void main()
 
 
 
 
/*
 
 
{
 
 
int a[5][5],m,n,i,j;
 
 
cout<<"enter the numbers of rows \n";
 
 
cin>>m;
 
 
cout<<"enter the numbers of columns \n";
 
 
cin>>n;
 
 
cout<<"enter the elements in the array\n";
 
 
for(i=0;i<m;i++)
 
 
{
 
 
for(j=0;j<n;j++)
 
 
cin>>a[i][j];
 
 
}
 
 
cout<<"displaying elements\n";
 
 
for(i=0;i<m;i++)
 
 
{
 
 
for(j=0;j<n;j++)
 
 
cout<<a[i][j]<<'\t';
 
 
cout<<endl;
 
 
}
 
 
}
 
 
<nowiki>*</nowiki>/
 
 
 
 
//find even numbers
 
 
/*
 
 
{
 
 
int a[5][5],m,n,i,j;
 
 
cout<<"enter the numbers of rows \n";
 
 
cin>>m;
 
 
cout<<"enter the numbers of columns \n";
 
 
cin>>n;
 
 
cout<<"enter the elements in the array\n";
 
 
for(i=0;i<m;i++)
 
 
{
 
 
for(j=0;j<n;j++)
 
 
cin>>a[i][j];
 
 
}
 
 
cout<<"displaying elements\n";
 
 
for(i=0;i<m;i++)
 
 
{
 
 
for(j=0;j<n;j++)
 
 
{
 
 
if(a[i][j]%2==0)
 
 
cout<<a[i][j]<<'\t';
 
 
}
 
 
cout<<endl;
 
 
}
 
 
}
 
 
<nowiki>*</nowiki>/
 
 
 
 
//find the count of even and odd elements
 
 
/*
 
 
{
 
 
int a[5][5],m,n,i,j,ce=0,co=0;
 
 
cout<<"enter the numbers of rows \n";
 
 
cin>>m;
 
 
cout<<"enter the numbers of columns \n";
 
 
cin>>n;
 
 
cout<<"enter the elements in the array\n";
 
 
for(i=0;i<m;i++)
 
 
{
 
 
for(j=0;j<n;j++)
 
 
{
 
 
cin>>a[i][j];
 
 
if(a[i][j]%2==0)
 
 
ce++;
 
 
else
 
 
co++;
 
 
}
 
 
}
 
 
cout<<"the count of even elements is "<<ce<<endl;
 
 
cout<<"the count of odd elements is "<<co;
 
 
}
 
 
<nowiki>*</nowiki>/
 
 
 
 
//sum of all elements
 
 
/*
 
 
{
 
 
int a[5][5],m,n,i,j,sum=0;
 
 
cout<<"enter the numbers of rows \n";
 
 
cin>>m;
 
 
cout<<"enter the numbers of columns \n";
 
 
cin>>n;
 
 
cout<<"enter the elements in the array\n";
 
 
for(i=0;i<m;i++)
 
 
{
 
 
for(j=0;j<n;j++)
 
 
{
 
 
cin>>a[i][j];
 
 
sum=sum+a[i][j];
 
 
}
 
 
}
 
 
 cout<<"displaying sum "<<sum;
 
 
}
 
 
<nowiki>*</nowiki>/
 
 
 
 
 
 
//find the prime numbers in the array
 
 
/*
 
 
{
 
 
int a[5][5],m,n,i,j,k,factor;
 
 
cout<<"enter the numbers of rows \n";
 
 
cin>>m;
 
 
cout<<"enter the numbers of columns \n";
 
 
cin>>n;
 
 
cout<<"enter the elements in the array\n";
 
 
for(i=0;i<m;i++)
 
 
{
 
 
for(j=0;j<n;j++)
 
 
cin>>a[i][j];
 
 
}
 
 
for(i=0;i<m;i++)
 
 
{
 
 
for(j=0;j<n;j++)
 
 
{
 
 
factor=0;
 
 
for(k=1;k<=a[i][j];k++)
 
 
if(a[i][j]%k==0)
 
 
factor++;
 
 
if(factor==2)
 
 
cout<<a[i][j]<<" ";
 
 
}
 
 
}
 
 
}
 
 
<nowiki>*</nowiki>/
 
 
 
 
 
 
//row sum
 
 
/*
 
 
{
 
 
int a[5][5],m,n,i,j,rs;
 
 
cout<<"enter the numbers of rows \n";
 
 
cin>>m;
 
 
cout<<"enter the numbers of columns \n";
 
 
cin>>n;
 
 
cout<<"enter the elements in the array\n";
 
 
for(i=0;i<m;i++)
 
 
{
 
 
for(j=0;j<n;j++)
 
 
cin>>a[i][j];
 
 
}
 
 
cout<<"displaying elements\n";
 
 
for(i=0;i<m;i++)
 
 
{
 
 
for(j=0;j<n;j++)
 
 
cout<<a[i][j]<<'\t';
 
 
cout<<endl;
 
 
}
 
 
cout<<"displaying row sum\n";
 
 
for(i=0;i<m;i++)
 
 
{
 
 
rs=0;
 
 
for(j=0;j<n;j++)
 
 
{
 
 
rs+=a[i][j];
 
 
}
 
 
cout<<rs<<" ";
 
 
}
 
 
}
 
 
<nowiki>*</nowiki>/
 
 
 
 
 
 
//column sum
 
 
/*
 
 
{
 
 
int a[5][5],m,n,i,j,cs;
 
 
cout<<"enter the numbers of rows \n";
 
 
cin>>m;
 
 
cout<<"enter the numbers of columns \n";
 
 
cin>>n;
 
 
cout<<"enter the elements in the array\n";
 
 
for(i=0;i<m;i++)
 
 
{
 
 
for(j=0;j<n;j++)
 
 
cin>>a[i][j];
 
 
}
 
 
cout<<"displaying elements\n";
 
 
for(i=0;i<m;i++)
 
 
{
 
 
for(j=0;j<n;j++)
 
 
cout<<a[i][j]<<'\t';
 
 
cout<<endl;
 
 
}
 
 
cout<<"displaying column sum\n";
 
 
for(j=0;j<n;j++)
 
 
{
 
 
cs=0;
 
 
for(i=0;i<m;i++)
 
 
{
 
 
cs+=a[i][j];
 
 
}
 
 
cout<<cs<<" ";
 
 
}
 
 
}
 
 
<nowiki>*</nowiki>/{{Infobox character
 
 
|name = Nigel Wick
 
|name = Nigel Wick
 
|image = [[File:4df4f67f78a1aaa85975edc839a41c7a.jpg|250px]]
 
|image = [[File:4df4f67f78a1aaa85975edc839a41c7a.jpg|250px]]

Revision as of 07:42, 31 October 2018

Nigel Wick
4df4f67f78a1aaa85975edc839a41c7a
Nigel Wick, Drew's boss in Seasons 2-9, played by Craig Ferguson
Personal Information
Gender: Male
Occupation/
Career:
Director of Personnel, Winifred-Lauder department store, Cleveland, OH
Character
description:
Main character, oftentimes an antagonist on the series
Related to: Maggie Wick (mother)
Character information
Appeared on: The Drew Carey Show
Episodes appeared in: 182 in series (Seasons 2-9)
Character played by: Craig Ferguson


Nigel Algernon Wick, Drew's employer, is a main character in the ABC-TV series The Drew Carey Show, played by comedian/actor/talk show host Craig Ferguson.

About Nigel

Nigel is Drew Carey's boss at Winfred-Lauder after the first season, replacing Mr. Gerald Bell (voiced and played by Kevin Pollak) who actually only appeared in on episode in Season 1. English, crude, boisterous and offensive, he was also a cocaine addict before he was forced to go into rehab. For some time, he and Drew were in a same-sex marriage (technically a civil union) in order for Mr. Wick to get his Green Card and Drew to get his job back. When he first appeared on stage in guest episodes in the last two seasons he was greeted with thunderous applause. Wick always had unusual methods of firing employees (and nearly always fired someone named "Johnson"). He is almost always referred to as "Mr. Wick," and his first name is rarely used.

Mr. Wick was shot in the crotch with a crossbow and had to have one of his testicles removed (a gag that was referred to for the rest of the series). Wick also lost a toe and a nipple in a fox hunt that went terribly wrong.

External links

This page uses Creative Commons Licensed content from Wikipedia (view authors). Wikipedia logo 1024x684