一涛救、基本運(yùn)算
1畏邢、在Main方法中定義變量,用這些變量存儲(chǔ)游戲中一個(gè)敵人應(yīng)該有的一些屬性州叠,定義盡可能多的變量(最少5個(gè))棵红。
string name;
int age;
string addr;
long id;
long phone;
long score;
int xueliang;
......
2、下面哪些變量名不合法咧栗?
myVariableIsGood 可以使用
99Flake 不可使用
_floor 可以使用
time2GetJiggyWidIt 可以使用但不建議逆甜。
wrox.com 不可使用
3虱肄、接受用戶輸入的兩個(gè)整數(shù),存儲(chǔ)到兩個(gè)變量里面交煞,交換變量存儲(chǔ)的值咏窿。
Console.WriteLine("請(qǐng)輸入兩個(gè)整數(shù),以回車分開:");
int a = Convert.ToInt32(Console.ReadLine());
int b = Convert.ToInt32(Console.ReadLine());
a = a - b;
b = a + b;
a = b - a;
Console.WriteLine(a);
Console.WriteLine(b);
4素征、編寫一個(gè)控制臺(tái)應(yīng)用程序集嵌,要求用戶輸入4個(gè)int值,并顯示他們的乘積御毅。
Console.WriteLine("請(qǐng)輸入4個(gè)整數(shù)根欧,以回車為分隔:");
int a = Convert.ToInt32(Console.ReadLine());
int b = Convert.ToInt32(Console.ReadLine());
int c = Convert.ToInt32(Console.ReadLine());
int d = Convert.ToInt32(Console.ReadLine());
double s = a * b * c * d;
Console.WriteLine("四個(gè)數(shù)的乘積是:"+s);
5、從鍵盤輸入一個(gè)三位的正整數(shù)端蛆,按數(shù)字的相反順序輸出凤粗。
Console.WriteLine("請(qǐng)輸入三位正數(shù)字:");
int n = Convert.ToInt32(Console.ReadLine());
int a, b, c;
a = n / 100;
b = (n - a * 100) / 10;
c = n % 10;
Console.WriteLine("{0}{1}{2}",c,b,a);
6、編寫一個(gè)程序今豆,輸入梯形的上底 下底 和高 嫌拣,計(jì)算出來梯形的面積并顯示出來。
Console.WriteLine("請(qǐng)輸入上底:");
int a = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("請(qǐng)輸入下底:");
int b = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("請(qǐng)輸入高:");
int h = Convert.ToInt32(Console.ReadLine());
double area = ((a + b) * h) /2.0;
Console.WriteLine("梯形的面積是: "+area.ToString("#0.00"));
7呆躲、計(jì)算半徑為n的圓的周長(zhǎng)和面積
Console.WriteLine("請(qǐng)輸入圓的半徑:");
int r = Convert.ToInt32(Console.ReadLine());
double d = 0, area = 0;
d = 2 * r * Math.PI;
area = r * r * Math.PI;
Console.WriteLine("圓的周長(zhǎng)是:"+d);
Console.WriteLine("圓的面積是:"+area);
二异逐、流程控制
1、編寫一個(gè)程序插掂,對(duì)輸入的4個(gè)整數(shù)灰瞻,求出其中的最大值和最小值,并顯示出來燥筷。
Console.WriteLine("請(qǐng)輸入四個(gè)數(shù):");
int n1 = Convert.ToInt32(Console.ReadLine());
int n2 = Convert.ToInt32(Console.ReadLine());
int n3 = Convert.ToInt32(Console.ReadLine());
int n4 = Convert.ToInt32(Console.ReadLine());
int max,min,t1,t2,t3,t4;
t1 = n1 > n2 ? n1 : n2;
t2 = n3 > n4 ? n3 : n4;
max = t1 > t2 ? t1 : t2;
t3 = (n1 < n2 ? n1 : n2);
t4 = (n3 < n4 ? n3 : n4);
min = t3 < t4 ? t3 : t4;
//max = (n1 > n2 ? n1 : n2) > (n3 > n4 ? n3 : n4) ? (n1 > n2 ? n1 : n2) : (n3 > n4 ? n3 : n4);
//min = (n1 < n2 ? n1 : n2) < (n3 < n4 ? n3 : n4) ? (n1 < n2 ? n1 : n2) : (n3 < n4 ? n3 : n4);
Console.WriteLine(max);
Console.WriteLine(min);
2箩祥、讓用戶輸入兩個(gè)整數(shù),然后再輸入0-3之間的一個(gè)數(shù)肆氓,0代表加法袍祖,1代表減法,2代表乘法谢揪,3代表除法,計(jì)算這兩個(gè)數(shù)字的結(jié)果蕉陋。
Console.WriteLine("請(qǐng)輸入兩個(gè)整數(shù)并回車:");
int i1 = Convert.ToInt32(Console.ReadLine());
int i2 = Convert.ToInt32(Console.ReadLine());
int jia, jian, cheng;
float chu;
Console.WriteLine("請(qǐng)輸入運(yùn)算:0-加法,1-減法拨扶,2-乘法凳鬓,3-除法");
int y = Convert.ToInt32(Console.ReadLine());
switch (y)
{
case 0:
jia = i1 + i2;
Console.WriteLine("兩數(shù)相加得數(shù)是:"+jia);
break;
case 1:
jian = i1 - i2;
Console.WriteLine("兩數(shù)相減得數(shù)是:" + jian);
break;
case 2:
cheng = i1 * i2;
Console.WriteLine("兩數(shù)相乘得數(shù)是:" + cheng);
break;
case 3:
chu = (float)i1 / i2;
Console.WriteLine("兩數(shù)相除得數(shù)是:" + chu.ToString("#0.00"));
break;
default:
Console.WriteLine("輸入有誤!");
break;
}
3患民、求出1~1000之間的所有能被7整除的數(shù)缩举,并計(jì)算和輸出每5個(gè)的和。
int sum = 0, count=0;
for (int i = 1; i < 1000; i++)
{
if (i % 7 == 0)
{
sum += i;
count++;
Console.WriteLine(i);
}
if(count==5)
{
Console.WriteLine("這5個(gè)數(shù)的和是:"+sum);
sum = 0;
count = 0;
}
}
4、編寫一個(gè)控制臺(tái)程序仅孩,分別輸出1~100之間的平方托猩、平方根。
int pf = 1;
double pfg;
Console.WriteLine("100以內(nèi)的數(shù)的平方:");
for (int i = 1; i <= 100; i++)
{
pf = i * i;
Console.WriteLine(pf);
}
Console.WriteLine("100以內(nèi)的數(shù)的平方根:");
for (int j = 1; j <=100; j++)
{
pfg = Math.Sqrt(j);
Console.WriteLine(pfg);
}
5辽慕、編程輸出1~100中能被3整除但不能被5整除的數(shù),并統(tǒng)計(jì)有多少個(gè)這樣的數(shù)京腥。
int count = 0;
for (int i = 0; i <= 100; i++)
{
if(i%3==0 && i%5!=0)
{
Console.WriteLine(i);
count++;
}
}
Console.WriteLine("100以內(nèi)能被3整除不能被5整除的數(shù)及個(gè)數(shù):"+count);
6、編程輸出九九乘法表溅蛉。
for (int r = 1; r <= 9; r++)
{
for (int c = 1; c < 10; c++)
{
if(r>=c)
Console.Write("{0}X{1}={2}\t", c, r, r * c);
}
Console.WriteLine();
}
7公浪、一個(gè)控制臺(tái)應(yīng)用程序,輸出1~5的平方值船侧,要求:用for語句實(shí)現(xiàn)欠气。用while語句實(shí)現(xiàn)。用do-while語句實(shí)現(xiàn)镜撩。
int j = 1, a = 1;
for (int i = 1; i <= 5; i++)
{
Console.WriteLine("{0}的平方是:{1}晃琳。",i,i*i);
}
Console.WriteLine("用for語句實(shí)現(xiàn)。");
while(j<=5)
{
Console.WriteLine("{0}的平方是:{1}琐鲁。", j, j * j);
j++;
}
Console.WriteLine("用while語句實(shí)現(xiàn)。");
do
{
Console.WriteLine("{0}的平方是:{1}人灼。", a, a * a);
a++;
}
while (a <= 5);
Console.WriteLine("用do-while語句實(shí)現(xiàn)围段。");
8、一個(gè)控制臺(tái)應(yīng)用程序,要求用戶輸入5個(gè)大寫字母投放,如果用戶輸入的信息不滿足要求奈泪,提示幫助信息并要求重新輸入。
do
{
Console.WriteLine("請(qǐng)輸入5個(gè)大寫字母:");
string str = Console.ReadLine();
if (str.Length != 5)
{
Console.WriteLine("輸入的字母?jìng)€(gè)數(shù)不對(duì)灸芳,請(qǐng)重新輸入");
continue;
}
else
{
for (int i = 0; i < 5; i++)
{
if (str[i] >= 'A' && str[i] <= 'Z')
{
if (i == 4)
{
Console.WriteLine("很好涝桅,你輸入的是:" + str);
break;
}
else
{ continue; }
}
else
{
Console.WriteLine("你輸入的不對(duì),請(qǐng)重新輸入5個(gè)大寫字母:");
break;
}
}
}
} while (true);
9烙样、一個(gè)控制臺(tái)應(yīng)用程序冯遂,要求完成寫列功能。
1)接收一個(gè)整數(shù)n谒获。
2)如果接收的值n為正數(shù)蛤肌,輸出1~n間的全部整數(shù)。
3)如果接收的值n為負(fù)值批狱,用break或者return退出程序裸准。
4)如何n為0的話 轉(zhuǎn)到1繼續(xù)接收下一個(gè)整數(shù)。
lable1:
Console.WriteLine("請(qǐng)輸入一個(gè)整數(shù)N:");
int n = Convert.ToInt32(Console.ReadLine());
if (n > 0)
{
for (int i = 1; i <= n; i++)
{
Console.Write(i + " ");
}
}
else if (n < 0)
{ return; }
else
{ goto lable1; }
10赔硫、
①炒俱、啟動(dòng)的時(shí)候,要求用戶輸入n個(gè)學(xué)生的名稱
②、用戶輸入完成之后权悟,可以有兩種操作砸王,第一種,繼續(xù)輸入僵芹,跳轉(zhuǎn)到第一步处硬,第二種,開始查詢拇派,跳轉(zhuǎn)到第三步
③荷辕、查詢
I 、如果用戶輸入的名字存在件豌,則輸出該名稱所對(duì)應(yīng)的下標(biāo)和這個(gè)名字
II疮方、 如果用戶輸入的名字不存在,那么提示用戶茧彤,名稱不存在骡显,是否要自動(dòng)添加? 如果添加曾掂,那么再查詢這個(gè)名 字的時(shí)候惫谤,
II、I要求打印出這個(gè)名字以及對(duì)應(yīng)的數(shù)組下標(biāo)珠洗。無論用戶選擇添加還是不添加溜歪,下一步都是讓用戶繼續(xù)查詢
Console.WriteLine("請(qǐng)輸入學(xué)生的個(gè)數(shù):");
int n = Convert.ToInt32(Console.ReadLine());
string[] str = new string[n];
List<string> list = new List<string>();
lable1:
Console.WriteLine("請(qǐng)輸入學(xué)生的姓名:");
for (int i = 0; i < n ; i++)
{
str[i]= Console.ReadLine();
}
list.AddRange(str);
Console.WriteLine("按1-繼續(xù)輸入,按2-查詢许蓖。");
int flag = Convert.ToInt32(Console.ReadLine());
if (flag == 1)
{ goto lable1; }
else if (flag == 2)
{
lable2:
Console.WriteLine("請(qǐng)輸入要查詢的學(xué)生姓名:");
string name = Console.ReadLine();
int j = 0;
while (j < list.Count)
{
if (list[j] == name)
{
Console.WriteLine("對(duì)應(yīng)的下標(biāo)是:{0}蝴猪,名字是:{1}", j, name);
goto lable2;
}
j++;
}
Console.WriteLine("你輸入的名字不存在,是否要添加膊爪?按1-添加自阱,按2-不添加");
int flag1 = Convert.ToInt32(Console.ReadLine());
if (flag1 == 1)
{
list.Add(name);
goto lable2;
}
else if(flag1==2)
{
goto lable2;
}
}
else
{
Console.WriteLine("你的輸入有誤請(qǐng)重輸:");
goto lable1;
}
Console.ReadKey();
}
}
}
=================================
+++++++++++++++++++++++++++++++++
=================================