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(大小写转换函数到百度里面搜) 展开
(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(大小写转换函数到百度里面搜) 展开
4个回答
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'));
}
}
}
编写一个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'));
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
写出下列的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'));
}
}
}
(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'));
}
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
女士你好
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'));
}
}
}
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'));
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询