課程
/后端開發
/C#
/C#開發輕松入門
我想問一下
2019-03-13
源自:C#開發輕松入門 3-2
正在回答
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
? ? class Program
? ? {
? ? ? ? static void Main(string[] args)
? ? ? ? {?
? ? ? ? ? ? int a=8;?
? ? ? ? ? ? int b=6;
? ? ? ? ? ? string test=a>b ? "a":"b";
? ? ? ? ? ? Console.Write(test);
? ? ? ? }
poisonrose
舉報
本門課程是C#語言的入門教程,將帶你輕松入門.NET開發
2 回答比較大小的時候報錯說超出數組范圍了
1 回答老師在嗎?用二維數組還是一維數組效率比較高呢?我現在用的是二維數組,代碼如下
1 回答“///” 了解的大神進
1 回答各位大佬看,這樣寫怎么樣
2 回答怎么鏈接數據庫啊
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網安備11010802030151號
購課補貼聯系客服咨詢優惠詳情
慕課網APP您的移動學習伙伴
掃描二維碼關注慕課網微信公眾號
2019-03-13
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
? ? class Program
? ? {
? ? ? ? static void Main(string[] args)
? ? ? ? {?
? ? ? ? ? ? int a=8;?
? ? ? ? ? ? int b=6;
? ? ? ? ? ? string test=a>b ? "a":"b";
? ? ? ? ? ? Console.Write(test);
? ? ? ? }