#代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("请输入苏小鬼的语文成绩");
string str_chinese = Console.ReadLine();
int chinese = Convert.ToInt32(str_chinese);
Console.WriteLine("请输入苏小鬼的数学成绩");
string str_math = Console.ReadLine();
int math = Convert.ToInt32(str_math);
bool b = chinese > 90 && math > 90;
Console.WriteLine(b);
Console.ReadKey();
}
}
}
网友评论