qq_拾忆_pCEJW4
2018-10-04 13:25
if(salary>=price)
{
Console.WriteLine("这月工资够买手机!");
}
else
{
Console.WriteLine("这月工资不够买手机!");
要加中文的感叹号
加了只是忘了写了
你是最后的大括号忘记加了吧
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
int salary = 1000;
int price = 500;
if (salary >= price)
{
Console.WriteLine("这月工资够买手机!");
}
else
{
Console.WriteLine("这月工资不够买手机!");
}
}
}
}
数字是我随便加的,可以输出结果
C#开发轻松入门
254118 学习 · 1459 问题
相似问题