C#运算符和表达式题目 100

写出下列的c#表达式(1)X+y+zx2+y2+z2(2)i是j的约数(3)n是小于正整数的K的偶数(4)|x|≧|y|或x<y(5)x,y其中有一个小于z(6)x,y都... 写出下列的c#表达式
(1)X+y+z
x2+y2+z2
(2)i是j的约数
(3)n是小于正整数的K的偶数
(4)|x|≧|y|或x<y
(5)x,y其中有一个小于z
(6)x,y都小于z
(7)y∈[-100,-10],并且y∈[10,100]
练习1:摄氏温度与华氏温度的转换
编写一个C#程序,将摄氏温度转换为华氏温度。
公式:F=9/5*C+32

练习2:编写一个计算圆面积程序,半径通过键盘录入。
练习3:大小写字母的转换
编写一个C#程序,实现输入一个小写字母,能够在屏幕上输出其对应的大写字母。
小写字母转换为大写字母:Unicode码-32(大小写转换函数到百度里面搜)
展开
 我来答
匿名用户
2012-02-28
展开全部
练习1:摄氏温度与华氏温度的转换
编写一个C#程序,将摄氏温度转换为华氏温度。
公式:F=9/5*C+32
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace 温度转化
{
class Program
{
public static void Main(string[] args)
{
double c,f;
c = Convert.ToDouble(Console.ReadLine());
//Console.WriteLine("{0:.00}", c);
f = 9.0 / 5.0 * c + 32;
Console.WriteLine("{0:.00}",f);
}
}

}

练习2:编写一个计算圆面积程序,半径通过键盘录入
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace 圆面积
{
class Program
{
public static void Main(string[] args)
{
double r,s;
r = Convert.ToDouble(Console.ReadLine());
//Console.WriteLine("{0:.00}", c);
s = Math.PI * r * r;
Console.WriteLine("{0:.00}",s);
}
}

}
练习3:大小写字母的转换
编写一个C#程序,实现输入一个小写字母,能够在屏幕上输出其对应的大写字母。
小写字母转换为大写字母:Unicode码-32(大小写转换函数到百度里面搜)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace 大小写转
{
class Program
{
public static void Main(string[] args)
{
string s;
s = Console.ReadLine();
if (s[0] >= 'a' && s[0] <= 'z')
{
Console.WriteLine(Convert.ToChar(s[0] - 'a' + 'A'));
}
else Console.WriteLine(Convert.ToChar( s[0] - 'A' + 'a'));
}
}

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友28b4182
2012-02-24 · TA获得超过7222个赞
知道大有可为答主
回答量:4847
采纳率:100%
帮助的人:1814万
展开全部
写出下列的c#表达式
(1)X+y+z x+y+z
x2+y2+z2 x*2+y*2+z*2
(2)i是j的约数 j%i==0
(3)n是小于正整数的K的偶数 n<k&&n%2==0
(4)|x|≧|y|或x<y Math.Abs(x)>=Math.Abs(y)||x<y
(5)x,y其中有一个小于z x<z||y<z
(6)x,y都小于z x<z&&y<z
(7)y∈[-100,-10],并且y∈[10,100] y>=-100&&y<=-10&&y>=10&&y<=100

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace 温度转化
{
class Program
{
public static void Main(string[] args)
{
double c,f;
c = Convert.ToDouble(Console.ReadLine());
//Console.WriteLine("{0:.00}", c);
f = 9.0 / 5.0 * c + 32;
Console.WriteLine("{0:.00}",f);
}
}

}

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace 圆面积
{
class Program
{
public static void Main(string[] args)
{
double r,s;
r = Convert.ToDouble(Console.ReadLine());
//Console.WriteLine("{0:.00}", c);
s = Math.PI * r * r;
Console.WriteLine("{0:.00}",s);
}
}

}

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace 大小写转
{
class Program
{
public static void Main(string[] args)
{
string s;
s = Console.ReadLine();
if (s[0] >= 'a' && s[0] <= 'z')
{
Console.WriteLine(Convert.ToChar(s[0] - 'a' + 'A'));
}
else Console.WriteLine(Convert.ToChar( s[0] - 'A' + 'a'));
}
}

}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
vaybu
2012-02-24 · TA获得超过180个赞
知道小有建树答主
回答量:37
采纳率:0%
帮助的人:68.7万
展开全部
女士你好
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace 温度转化
{
class Program
{
public static void Main(string[] args)
{
double c,f;
c = Convert.ToDouble(Console.ReadLine());
//Console.WriteLine("{0:.00}", c);
f = 9.0 / 5.0 * c + 32;
Console.WriteLine("{0:.00}",f);
}
}

}

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace 圆面积
{
class Program
{
public static void Main(string[] args)
{
double r,s;
r = Convert.ToDouble(Console.ReadLine());
//Console.WriteLine("{0:.00}", c);
s = Math.PI * r * r;
Console.WriteLine("{0:.00}",s);
}
}

}

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace 大小写转
{
class Program
{
public static void Main(string[] args)
{
string s;
s = Console.ReadLine();
if (s[0] >= 'a' && s[0] <= 'z')
{
Console.WriteLine(Convert.ToChar(s[0] - 'a' + 'A'));
}
else Console.WriteLine(Convert.ToChar( s[0] - 'A' + 'a'));
}
}

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
过客而已199
2012-02-24 · 超过25用户采纳过TA的回答
知道答主
回答量:179
采纳率:0%
帮助的人:59.9万
展开全部
.
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式