忘记却记得吧
关注: 25 贴子: 108

  • 目录:
  • 职业考试
  • 0
    经核实吧主_忘记却记得_ 未通过普通吧主考核。违反《百度贴吧吧主制度》第八章规定http://tieba.baidu.com/tb/system.html#cnt08 ,无法在建设 忘记却记得吧 内容上、言论导向上发挥应有的模范带头作用。故撤销其吧主管理权限。百度贴吧管理组
  • 0
         千    年     梦 往    , 事     弹 如 曲    指 水 已    间 淡 终 旧    , 如 , 梦      烟 人 初      。 亦 醒        散 已        , 千          年           !
  • 19
    刷机的朋友请跟帖,并留下自己的联系QQ 我会按照先后顺序联系大家
  • 1
    求大神帮忙远程刷机、、
  • 0
    ——————这是一条逆天的小尾巴,只为十五字而生
  • 9
    cmd进入DOS系统 dos命令 dos下各种常见命令索引 ▲ dir ▲ attrib ▲ cd ▲ copy ▲ xcopy ▲ del ▲ undelete ▲ deltree ▲ dos=high ▲ doskey ▲ emm386.exe ▲fc ▲ format ▲ unformat ▲ interlnk ▲ intersvr ▲ memmaker ▲ memitem等 ▲ mscdex ▲ msd ▲ prompt ▲ ramdrive ▲ subst ▲ mem ▲ "> < >> <<"工具 ▲ move ▲ append ▲ call ▲ defrag ▲ device
    bfcqmusaor 3-12
  • 3
    ing System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;namespace 练习题一 { class Program { static void Main(string[] args) { #region 第一题 Console.WriteLine("请输入你的姓名:"); String xm=Console.ReadLine(); Console.WriteLine("请输入你的语文成绩:"); String Chinses = Console.ReadLine(); Console.WriteLine("请输入你的数学:"); String Math= Console.ReadLine(); int zhMath = Convert.ToInt32(Math); int zhChinede = Convert.ToInt32(Chinses); Console.WriteLine("请输入你的英语:"); String English = Conso
  • 0
    ----------------------------------------------------- 第六天 ______________________________________________________ 类型转换 int 变量=Convert.ToInt32(待转换字符串) 上面一句话的意义是:把待转换字符串转换乘int类型然后赋给变量 例如 string bl=Console.Readline(); int zh=Convert.ToIin32(bl);
  • 0
    ing System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;namespace 第六天学习 { class Program { static void Main(string[] args) { /*转换类型(强制转化字符类型)*/ #region 第一种强制转换 int number0 = 20; int number1 = 30; Console.WriteLine((double)number0+(double)number1); Console.ReadKey(); #endregion #region 第三种强制转换 double number3 = (int)20; decimal number4 = (int)30; Console.ReadKey(); #endregion #region 第一种强制转换 Console.WriteLine("这是一个计算成绩的程序:"); Console.Writ
  • 0
    ing System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;namespace 第五天作业 { class Program { static void Main(string[] args) { #region 第五天作业第一题 int number1 = 10; int number2 = 20; Console.WriteLine(number1+number2); Console.ReadKey(); #endregion #region 第五天作业第二题 double pi = 3.14; int r = 5; Console.WriteLine("以{0}作为半径的圆的面积是:"+pi*r*r,r); Console.ReadKey(); #endregion #region 第五天作业第三题 int txmony = 35; int kzmony = 120; int all = txmony * 3 + kzmony * 2; Console.
  • 0
    ing System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;namespace 第五天学习 { class Program { static void Main(string[] args) { #region 第一题 String xm = "张三"; char xb='男'; int age = 21; string dhhm = "12345678911"; Console.WriteLine("我叫做{0}性别{2}今年已经有{1}了,我的手机号码是{3}",xm,age,xb,dhhm); Console.ReadKey(); #endregion #region 第二题 String dh = "天语"; String xh = "619"; decimal jg=1500m; double zl=0.3; Console.WriteLine("我的手机是{0},型号:{1},价格是:{2}元,重量为{
  • 0
    ---------------------------------------------------- 第五天 ______________________________________________________ 用于让用户从键盘上输入一句话当程序执行到下面这句话就会暂停,然后等待用户从键盘输入一句话,按回车曾旭将继续执行。 Console,ReadLine(); 如果想得到用户输入的内容,那么就定义一个String类型的变量,卸载这句话额前面,接收用户如数的内容 接收用户输入的内容全部用String类型定义的变量来处理 string input=Console.ReadLine();转义字符: 当我们需要在字符串
  • 1
    using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 变量类型和例子 { class Program { static void Main(string[] args) { Console.WriteLine("变量的定义:");//输出一句话 Console.WriteLine(" 变量代表一块存储空间,我们可以通过变量名称向内存存/取数据。有变量就不用我们记住复杂的内存地址。"); Console.WriteLine(); Console.WriteLine("声明变量格式:"); Console.WriteLine(" 数据类型 变量名;"); Console.WriteLine();//空白换行 Console.WriteLine("赋值格
  • 0
    ------------------------------------------------------ 第四天 ______________________________________________________ 赋值运算符:=(优先级最低的) 将赋值运算符右边的值赋值给左边的变量; 变量可以重复赋值,但不可以重复定义,一旦给一个变量赋了新值,那么变量中的老值就不存在了。 “+”在C#中有两种意义: (1)是数学中的加法运算;两边参与加法运算的数据类型为数字类型,则“+”表示数学上加法的意义 (2)是连接的意思;两边参与加号运算的数据有一个是字
  • 0
    using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 中变量类型和例子 { class Program { static void Main(string[] args) { int a; a = 1024; Console.WriteLine(a); Console.ReadKey(); } } }
  • 0
    #region #endregion 折叠该代码中间代码 变量 计算机内存(RAM):用户用于存储正在运行的数据,断电后数据丢失。 变量:变量代表一块内存空间,我们快可以通过变量名称向内存存/取数据。有变量就不需要我们记忆复杂的内存地址。 声明变量格式: 数据类型 变量名; 赋值: 变量名=值; 例如: int a; a=1024; 变量类型: 整数数值型:int 非整型:double decimal 非数值:char String
  • 0
    using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 我的第一次测试 { class Program { static void Main(string[] args) { Console.WriteLine("这是我的第一个C#程序,值得保存!"); Console.ReadKey(); } } }
  • 0
    解决方案中可以包含多个项 项可以包含多个文件 文件中是我们学的程序 using 是应用命名空 namespace._命名空间 命名空间不应许数字开头 class 定义类 一个命名空间、类、方法以“{”开始“}”结束 命名空间---类-----方法----程序 他们存在包含关系 重置开发环境 工具→导入→重置窗口 打开关闭窗口 在视图里调出 类文件名以.CS为后缀名 Main方法是我们程序的入口 要执行一个程序时会首先找到Main方法,从Mian方法第一句开始执行,当Main方法执行完成后
  • 1
    我有个提议,进我的贴吧...帮我活跃一下呗...
  • 1
    一个人的世界 清静了.一个人的世界 清静了.一个人的世界 清静了.一个人的世界 清静了.一个人的世界 清静了.一个人的世界 清静了.一个人的世界 清静了.一个人的世界 清静了.一个人的世界 清静了.
  • 0
    一个人的世界 清静了.一个人的世界 清静了.一个人的世界 清静了.一个人的世界 清静了.一个人的世界 清静了.一个人的世界 清静了.
  • 0
    视频下载地址:http://pan.baidu.com/share/link?shareid=137706&uk=858149612

  • 发贴红色标题
  • 显示红名
  • 签到六倍经验

赠送补签卡1张,获得[经验书购买权]

扫二维码下载贴吧客户端

下载贴吧APP
看高清直播、视频!

本吧信息 查看详情>>

会员: 会员

目录: 职业考试