.NET--猜数游戏和九九乘法表 系统管理员 2022-05-28 02:26 97阅读 0赞 1、猜数游戏: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace xcu_for { class Program { static void Main(string[] args) { int count = 0; int num; Random r = new Random(); int number = r.Next(0, 101); for(int i = 0;i<3;i++) { Console.Write("please input a 0-100 number:"); num = Convert.ToInt16(Console.ReadLine()); count++; if(num>number) { Console.WriteLine("数字太大!你还有{0}次机会" ,3-count); } else if(num<number) { Console.WriteLine("数字太小!你还有{0}次机会", 3 - count); } else { Console.WriteLine("你输入的成绩正确!"); break; } } } } } 运行结果: ![20180328092008886][] 九九乘法表: 主要代码: for(i = 1;i<=9;i++) { for(j = 1;j<=i;j++) { strTemp = string.Format("{0}*{1}={2}",i,j,i*j); Console.Write(strTemp); } Console.WriteLine(); } [20180328092008886]: /images/20220528/ead5f11937814888a3b717d0564d6bbe.png
相关 九九乘法表 九九乘法表 public class Java { public static void main(String[] args) { Sys 向右看齐/ 2023年01月03日 04:13/ 0 赞/ 134 阅读
相关 九九乘法表 include<stdio.h> int main() { int i=1, j=1; while(i<=9) 待我称王封你为后i/ 2022年11月07日 13:13/ 0 赞/ 190 阅读
相关 九九乘法表 打印九九乘法表 / 打印九九乘法口诀表 / public void nineNineMulitTable(){ 左手的ㄟ右手/ 2022年10月30日 14:28/ 0 赞/ 191 阅读
相关 九九乘法表 <html> <head> <style> table\{ border-collapse: collapse; Bertha 。/ 2022年08月21日 03:19/ 0 赞/ 200 阅读
相关 九九乘法表 public class test28\{ public static void main(String\[ \] args)\{ for(int i=1;i<=9 傷城~/ 2022年06月04日 03:17/ 0 赞/ 233 阅读
相关 九九乘法表 > 九九乘法表 关键代码 for(int j=1;j<=i;j++)\{ 总的代码 public class jiujiu 阳光穿透心脏的1/2处/ 2022年06月02日 08:26/ 0 赞/ 231 阅读
相关 .NET--猜数游戏和九九乘法表 1、猜数游戏: using System; using System.Collections.Generic; using System.Linq; 系统管理员/ 2022年05月28日 02:26/ 0 赞/ 98 阅读
相关 九九乘法表 九九乘法表 算法很简单,主要是输出控制问题。 JAVA语言版 public class 九九乘法表 { / @param arg 怼烎@/ 2022年03月25日 03:54/ 0 赞/ 264 阅读
还没有评论,来说两句吧...