java——双色球控制台版

双色球控制台版

技术需要

  • 双重数组
  • for、while循环
  • if switch 分支判断
  • break continue 循环控制

时间不够再打一边电子档,

如果大家有问题可以私聊或者留言问我,

电子版有点乱,(。・_・。)ノI’m sorry~

整体代码在最后,

好记性不如烂笔头,

希望大家还是自己整理一遍思路后再敲一遍

不要懒欧(*^▽^*)

1957f5acbc92675146cfeb88991bb8f

9110419b5d18dc3b8f09e424333a068

image-20220731162850773

de98f32c7f410e329e8b81a7d0cd6c53dfd603f3f50840733f41fb10cd3a85

de98f32c7f410e329e8b81a7d0cd6c5

eb6edf6bac4dcd4bde0ae0efd5bd574

be5edd7b6b95a1f7e7d070dfae4b309

5ada3ca82a00b8e71c6cd43ddfce6e3

6c67c815002f4941d07c2a422f88c67

b7d332dba5634564ce9ab961ed5bd49

变量创建

Scanner sc = new Scanner(System.in);int menu = 0;int[][] buy = new int[200][8];int buy_RedCount = 0;int buy_RedTemp = 0;int buy_BlueTemp = 0;int buy_MultipleTemp = 0;int buy_Count = 0;char buy_Continue = 'n';boolean redSort_Flag = false;boolean open_Flag = false;Random open_Random = new Random();int[] open = new int[7];int open_RedTemp = 0;int open_RedCount = 0;int view_RedCount = 0;int view_BlueCount = 0;int[] view = {0, 0, 0, 0};int view_Multiple = 0;int view_Sum = 0;

欢迎界面

 //WelcomeSystem.out.println("\n****** ******* ******* ******* ******* ******* *******");System.out.println("Welcome to Two-Color ball!欢迎━(*`∀´*)ノ亻!");System.out.println("****** ******* ******* ******* ******* ******* *******");

菜单及do-while

o1:do {System.out.println("Please select the function by numbers(*^▽^*)");System.out.println("1. Buy lottery;");System.out.println("2. View purchased numbers;");System.out.println("3. Open the price;;");System.out.println("4. View the Winners;");System.out.println("5. Exit;");menu = sc.nextInt();switch (menu) {}} while (true);

case1

case 1:if (open_Flag){System.out.println("\nJust able to buy lotteries before open price!!!\n");break ;}System.out.println("\nBuy lottery:");while (true) {buy_RedCount = 0;//red-ballo2:while (true) {//input red-ballsSystem.out.println("Please input No." + (buy_Count + 1) + " lottery's red-ball's No." + (buy_RedCount + 1) + " number");buy_RedTemp = sc.nextInt();if (buy_RedTemp < 1 || buy_RedTemp > 31) {System.out.println("\nPlease input the number between 1 and 31 again!!!\n");continue;} else {for (int i = 0; i < buy_RedCount; i++) {if (buy_RedTemp == buy[buy_Count][i]) {System.out.println("\nCan't select the same ball!!!");System.out.println("Please input the number again!!!\n");continue o2;}}buy[buy_Count][buy_RedCount] = buy_RedTemp;buy_RedCount++;if (buy_RedCount == 6) {for (int i = 0; i < buy_RedCount - 1; i++) {for (int i1 = 0; i1 < buy_RedCount - 1 - i; i1++) {if (buy[buy_Count][i1] > buy[buy_Count][i1 + 1]) {buy_RedTemp = buy[buy_Count][i1];buy[buy_Count][i1] = buy[buy_Count][i1 + 1];buy[buy_Count][i1 + 1] = buy_RedTemp;redSort_Flag = true;}}if (!redSort_Flag) {break;}}break o2;}}}//blue-ballwhile (true) {System.out.println("Please input the blue-ball number:");buy_BlueTemp = sc.nextInt();if (buy_BlueTemp < 1 || buy_BlueTemp > 16) {System.out.println("\nPlease input the number again!!!\n");continue;} else {buy[buy_Count][buy_RedCount] = buy_BlueTemp;break;}}//multiplewhile (true) {System.out.println("Please input the multiple:");buy_MultipleTemp = sc.nextInt();if (buy_MultipleTemp < 2) {System.out.println("\nPlease input the number more than 1!!!\n");continue;} else {buy[buy_Count][buy_RedCount + 1] = buy_MultipleTemp;break;}}buy_Count++;//continueSystem.out.println("\nWhether what to buy a lottery again?(y/n)");buy_Continue = sc.next().charAt(0);if (buy_Continue == 'y' || buy_Continue == 'Y') {System.out.println();continue;} else {System.out.println("\nAbout exit purchase system...");System.out.println("Good luck!\n");break;}}break;

case2

case 2:System.out.println("\nView purchased numbers:");for (int i = 0; i < buy_Count; i++) {System.out.println("--------------------Lottery_" + (i + 1) + "------------------");System.out.print("Red-Ball Numbers : ");for (int j = 0; j < buy_RedCount; j++) {System.out.print(buy[i][j] + "\t");}System.out.println();System.out.print("Blue-Ball Numbers : ");System.out.println(buy[i][buy_RedCount]);System.out.print("Multiple Numbers : ");System.out.println(buy[i][buy_RedCount + 1]);}System.out.println();break;

case3

case 3://just able to open onceif(open_Flag){System.out.println("\nJust able to open the price once!!!\n");break ;}System.out.println("\nOpen the price:");//set flagopen_Flag = true;//generalize the red-ballo3:while(true) {//use open_RedTemp rather than directly use arrayopen_RedTemp = open_Random.nextInt(31) + 1;//remove the same randomfor (int i = 0; i < open_RedCount; i++) {if (open_RedTemp == open[i]) {continue o3;}}open[open_RedCount] = open_RedTemp;open_RedCount++;//exit red-ball generalizeif(open_RedCount==6){break ;}}//sort red-ballfor (int i = 0; i < 6 - 1; i++) {for (int i1 = 0; i1 < 6 - 1 - i; i1++) {if (open[i1]>open[i1+1]){open_RedTemp = open[i1];open[i1] = open[i1 + 1];open[i1 + 1] = open_RedTemp;}}}//generalize blue-ballopen[6] = open_Random.nextInt(16) + 1;System.out.println("The winning red-ball numbers:");for (int i = 0; i < 6; i++) {System.out.print(open[i]+"\t");}System.out.println();System.out.println("The winning blue-ball numbers:");System.out.print(open[6]);System.out.println("\n");break;

case4

case 4:if (buy_Count==0){System.out.println("\nPlease buy lotteries firstly!!!\n");break ;}if (!open_Flag){System.out.println("\nPlease open price firstly!!!\n");break ;}System.out.println("\nView the Winners:");for (int i = 0; i < buy_Count; i++) {view_RedCount = 0;view_BlueCount = 0;//output the buy lotteriesSystem.out.println("--------------The No."+(i+1)+" lottery---------------");System.out.print("The red-ball numbers:");for (int i1 = 0; i1 < 6; i1++) {System.out.print(buy[i][i1]+"\t");}System.out.println();System.out.print("The blue-ball numbers:" + buy[i][6]);System.out.println();//judge the red-ball number and sumSystem.out.print("The red-ball winning numbers:");for (int i1 = 0; i1 < open.length-1; i1++) {for (int i2 = 0; i2 < 6; i2++) {if(open[i1] == buy[i][i2]){System.out.print(open[i1]+"\t");view_RedCount++;}}}System.out.println();//judge the blue-ballSystem.out.print("The blue-ball winning numbers:");if(open[6]==buy[i][6]){System.out.print(open[6]);view_BlueCount++;}System.out.println();//judge the level of priceif(view_RedCount==6&&view_BlueCount==1){System.out.println("Get the first price!!! The price is "+5000000*buy[i][7]);view_Sum += 5000000 * buy[i][7];view[0]++;} else if (view_RedCount==6&&view_BlueCount==0) {System.out.println("Get the second price!!! The price is "+500000*buy[i][7]);view_Sum += 500000 * buy[i][7];view[1]++;}else if (view_RedCount==5&&view_BlueCount==1) {System.out.println("Get the third price!!! The price is "+50000*buy[i][7]);view_Sum += 50000 * buy[i][7];view[2]++;}else if (view_RedCount==5&&view_BlueCount==0 || view_RedCount==4&&view_BlueCount==1) {System.out.println("Get the forth price!!! The price is "+200*buy[i][7]);view_Sum += 200 * buy[i][7];view[3]++;}}System.out.println("------------------------In the end--------------------------");if (view[0]!=0) {System.out.println("In the end , you have win the first price " + view[0] + " times");}if (view[1]!=0) {System.out.println("In the end , you have win the second price "+view[1]+" times");}if (view[2]!=0) {System.out.println("In the end , you have win the third price "+view[2]+" times");}if (view[3]!=0) {System.out.println("In the end , you have win the forth price "+view[3]+" times");}System.out.println("Totally get the bonus " + view_Sum);System.out.println();break;

case5&&default

case 5:System.out.println("\nExit:");System.out.println("About to exit system......");System.out.println("ヾ(ToT)Bye~Bye~");break o1;default:System.out.println("\nPlease input a correct again!!![○・`Д´・ ○]\n");break;

整体代码

    public static void main(String[] args) {Scanner sc = new Scanner(System.in);int menu = 0;int[][] buy = new int[200][8];int buy_RedCount = 0;int buy_RedTemp = 0;int buy_BlueTemp = 0;int buy_MultipleTemp = 0;int buy_Count = 0;char buy_Continue = 'n';boolean redSort_Flag = false;boolean open_Flag = false;Random open_Random = new Random();int[] open = new int[7];int open_RedTemp = 0;int open_RedCount = 0;int view_RedCount = 0;int view_BlueCount = 0;int[] view = {0, 0, 0, 0};int view_Multiple = 0;int view_Sum = 0;//WelcomeSystem.out.println("\n****** ******* ******* ******* ******* ******* *******");System.out.println("Welcome to Two-Color ball!欢迎━(*`∀´*)ノ亻!");System.out.println("****** ******* ******* ******* ******* ******* *******");o1:do {System.out.println("Please select the function by numbers(*^▽^*)");System.out.println("1. Buy lottery;");System.out.println("2. View purchased numbers;");System.out.println("3. Open the price;;");System.out.println("4. View the Winners;");System.out.println("5. Exit;");menu = sc.nextInt();switch (menu) {case 1:if (open_Flag){System.out.println("\nJust able to buy lotteries before open price!!!\n");break ;}System.out.println("\nBuy lottery:");while (true) {buy_RedCount = 0;//red-ballo2:while (true) {//input red-ballsSystem.out.println("Please input No." + (buy_Count + 1) + " lottery's red-ball's No." + (buy_RedCount + 1) + " number");buy_RedTemp = sc.nextInt();if (buy_RedTemp < 1 || buy_RedTemp > 31) {System.out.println("\nPlease input the number between 1 and 31 again!!!\n");continue;} else {for (int i = 0; i < buy_RedCount; i++) {if (buy_RedTemp == buy[buy_Count][i]) {System.out.println("\nCan't select the same ball!!!");System.out.println("Please input the number again!!!\n");continue o2;}}buy[buy_Count][buy_RedCount] = buy_RedTemp;buy_RedCount++;if (buy_RedCount == 6) {for (int i = 0; i < buy_RedCount - 1; i++) {for (int i1 = 0; i1 < buy_RedCount - 1 - i; i1++) {if (buy[buy_Count][i1] > buy[buy_Count][i1 + 1]) {buy_RedTemp = buy[buy_Count][i1];buy[buy_Count][i1] = buy[buy_Count][i1 + 1];buy[buy_Count][i1 + 1] = buy_RedTemp;redSort_Flag = true;}}if (!redSort_Flag) {break;}}break o2;}}}//blue-ballwhile (true) {System.out.println("Please input the blue-ball number:");buy_BlueTemp = sc.nextInt();if (buy_BlueTemp < 1 || buy_BlueTemp > 16) {System.out.println("\nPlease input the number again!!!\n");continue;} else {buy[buy_Count][buy_RedCount] = buy_BlueTemp;break;}}//multiplewhile (true) {System.out.println("Please input the multiple:");buy_MultipleTemp = sc.nextInt();if (buy_MultipleTemp < 2) {System.out.println("\nPlease input the number more than 1!!!\n");continue;} else {buy[buy_Count][buy_RedCount + 1] = buy_MultipleTemp;break;}}buy_Count++;//continueSystem.out.println("\nWhether what to buy a lottery again?(y/n)");buy_Continue = sc.next().charAt(0);if (buy_Continue == 'y' || buy_Continue == 'Y') {System.out.println();continue;} else {System.out.println("\nAbout exit purchase system...");System.out.println("Good luck!\n");break;}}break;case 2:System.out.println("\nView purchased numbers:");for (int i = 0; i < buy_Count; i++) {System.out.println("--------------------Lottery_" + (i + 1) + "------------------");System.out.print("Red-Ball Numbers : ");for (int j = 0; j < buy_RedCount; j++) {System.out.print(buy[i][j] + "\t");}System.out.println();System.out.print("Blue-Ball Numbers : ");System.out.println(buy[i][buy_RedCount]);System.out.print("Multiple Numbers : ");System.out.println(buy[i][buy_RedCount + 1]);}System.out.println();break;case 3://just able to open onceif(open_Flag){System.out.println("\nJust able to open the price once!!!\n");break ;}System.out.println("\nOpen the price:");//set flagopen_Flag = true;//generalize the red-ballo3:while(true) {//use open_RedTemp rather than directly use arrayopen_RedTemp = open_Random.nextInt(31) + 1;//remove the same randomfor (int i = 0; i < open_RedCount; i++) {if (open_RedTemp == open[i]) {continue o3;}}open[open_RedCount] = open_RedTemp;open_RedCount++;//exit red-ball generalizeif(open_RedCount==6){break ;}}//sort red-ballfor (int i = 0; i < 6 - 1; i++) {for (int i1 = 0; i1 < 6 - 1 - i; i1++) {if (open[i1]>open[i1+1]){open_RedTemp = open[i1];open[i1] = open[i1 + 1];open[i1 + 1] = open_RedTemp;}}}//generalize blue-ballopen[6] = open_Random.nextInt(16) + 1;System.out.println("The winning red-ball numbers:");for (int i = 0; i < 6; i++) {System.out.print(open[i]+"\t");}System.out.println();System.out.println("The winning blue-ball numbers:");System.out.print(open[6]);System.out.println("\n");break;case 4:if (buy_Count==0){System.out.println("\nPlease buy lotteries firstly!!!\n");break ;}if (!open_Flag){System.out.println("\nPlease open price firstly!!!\n");break ;}System.out.println("\nView the Winners:");for (int i = 0; i < buy_Count; i++) {view_RedCount = 0;view_BlueCount = 0;//output the buy lotteriesSystem.out.println("--------------The No."+(i+1)+" lottery---------------");System.out.print("The red-ball numbers:");for (int i1 = 0; i1 < 6; i1++) {System.out.print(buy[i][i1]+"\t");}System.out.println();System.out.print("The blue-ball numbers:" + buy[i][6]);System.out.println();//judge the red-ball number and sumSystem.out.print("The red-ball winning numbers:");for (int i1 = 0; i1 < open.length-1; i1++) {for (int i2 = 0; i2 < 6; i2++) {if(open[i1] == buy[i][i2]){System.out.print(open[i1]+"\t");view_RedCount++;}}}System.out.println();//judge the blue-ballSystem.out.print("The blue-ball winning numbers:");if(open[6]==buy[i][6]){System.out.print(open[6]);view_BlueCount++;}System.out.println();//judge the level of priceif(view_RedCount==6&&view_BlueCount==1){System.out.println("Get the first price!!! The price is "+5000000*buy[i][7]);view_Sum += 5000000 * buy[i][7];view[0]++;} else if (view_RedCount==6&&view_BlueCount==0) {System.out.println("Get the second price!!! The price is "+500000*buy[i][7]);view_Sum += 500000 * buy[i][7];view[1]++;}else if (view_RedCount==5&&view_BlueCount==1) {System.out.println("Get the third price!!! The price is "+50000*buy[i][7]);view_Sum += 50000 * buy[i][7];view[2]++;}else if (view_RedCount==5&&view_BlueCount==0 || view_RedCount==4&&view_BlueCount==1) {System.out.println("Get the forth price!!! The price is "+200*buy[i][7]);view_Sum += 200 * buy[i][7];view[3]++;}}System.out.println("------------------------In the end--------------------------");if (view[0]!=0) {System.out.println("In the end , you have win the first price " + view[0] + " times");}if (view[1]!=0) {System.out.println("In the end , you have win the second price "+view[1]+" times");}if (view[2]!=0) {System.out.println("In the end , you have win the third price "+view[2]+" times");}if (view[3]!=0) {System.out.println("In the end , you have win the forth price "+view[3]+" times");}System.out.println("Totally get the bonus " + view_Sum);System.out.println();break;case 5:System.out.println("\nExit:");System.out.println("About to exit system......");System.out.println("ヾ(ToT)Bye~Bye~");break o1;default:System.out.println("\nPlease input a correct again!!![○・`Д´・ ○]\n");break;}} while (true);}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/27629.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

postgresql windows下修改帐号密码 (图文)

重新设置postgres用户的密码方法&#xff1a; 1、关闭数据库服务 2、进入数据库的工作空间目录 (如果是建库是没有另外指定&#xff0c;应该就是postgresql安装目录下的 data 目录) 3、编辑修改文件 pg_hba.conf&#xff0c; 把连接权限设置的 md5 加密方式 改成 trust&#xf…

PostgreSQL登录及修改密码

PostgreSQL登录 1、可通过客户端pgAdmin III直接登录 通过pgAdmin III登录PG库 2、可通过命令行 命令&#xff1a;psql -h 10.10.10.10 -U user -d postgres -p 5570 1 -h&#xff1a;数据库IP -U&#xff1a;登录用户 -d&#xff1a;登录的数据库 -p&#xff1a;登录…

现在的Android开发已经到了必须要转行的时候吗?

前言 最近&#xff0c;有位好友问我这么一个问题&#xff1a; “我做 Android 开发两年多时间了&#xff0c;但是最近总是很焦虑&#xff0c;看着人工智能越来越火&#xff0c;很担心 Android 要不行了&#xff0c;想问下&#xff0c;我现在要转行么&#xff1f;Android 还可以…

【论文写作】英文写作工具推荐及使用教程:DeepL(翻译) + EasyEssay(扩写) + QuillBot(改写润色)

文章目录 一、DeepL二、EasyEssay2.1 润写2.2 扩写2.3 生成文章2.4 英文查重 三、QuillBot 一、DeepL DeepL官网 DeepL的主要作用是翻译&#xff0c;一开始我也是在B站上看到有人推荐用这款翻译工具的&#xff0c;抱着试一试的心态去用了一下&#xff0c;感觉翻译效果真的很不错…

句子的改写和扩写

目录 1.句子改写 2.句子扩写 &#xff08;不低于15个句子算是长句子&#xff0c;不能太多长句子&#xff09; 1.句子改写 我绝不会嫁给你的。 如果你是世界上最后一个男人&#xff0c;我就去寺庙。 If you married me,I would jump into the well. 如果你嫁给我&#xff0c;我…

new bing移动端已上线、notion.ai也不用排队了

您好&#xff0c;这是Bing。 感谢您对新Bing的关注。 新Bing是一种新型的搜索引擎&#xff0c;它不仅提供相关的链接&#xff0c;还能整合网络上可靠的来源&#xff0c;给您一个简明的答案。 您可以用自然语言进行搜索&#xff0c;Bing会根据您的复杂问题分享详细的回答。 ​ ​…

解决newbing提示“今日你已达到今天的对话限制, 登录以继续你的聊天”和bing没有聊天对话框的问题

这几天想用newbing帮我收集一些数据集&#xff0c;但是我科学上网之后进入www.bing.com仍然没有弹出聊天选项。上网找了一些方法&#xff0c;让我清除cookie和更改微软账号地区设置。“聊天”框可以弹出了&#xff0c;但是一聊天就提示“今日你已达到今天的对话限制&#xff0c…

求助帖:转行1年,薪资多少才算高?

来源网络&#xff0c;如侵删 求助帖 自学转行&#xff0c;经验未满1年的产品经理&#xff0c;薪资范围应该是多少&#xff0c;薪资多少才算高&#xff1f; 昨天&#xff0c;播妞在网上收集素材的时候&#xff0c;突然发现了一个求助帖。留言区议论纷纷&#xff0c;其中有一条留…

腾讯月薪60k招程序员,看到要求我傻眼了!

作为一名程序员&#xff0c;天生崇拜写代码能力强的程序大佬。但是&#xff0c;只要写代码能力足够强&#xff0c;就能在职业发展道路畅行无阻吗&#xff1f; 答案当然是&#xff1a;NO&#xff01;你还需要有项目管理的能力。 产品经理天天不干正事&#xff0c;提的需求没头没…

销售真不是人干的事,从底薪3K到转行程序员年薪24W+,给想转行的你

26岁&#xff0c;做了6年销售&#xff0c;我决定放弃销售行业转行技术类&#xff01; 从读大专出来&#xff0c;就校招进了一家湖南长沙的销售公司&#xff0c;兜兜转转在这个行业一待就是六年&#xff0c; 如果你也是刚毕业的大学生&#xff0c;我劝你千万不要做销售&#xf…

程序员真实调查,工资真的高吗?反正我的不高

想要看更加舒服的排版、更加准时的推送 关注公众号“不太灵光的程序员” 每日八点有干货推送 全球约有1850万程序员&#xff0c;中国占10%&#xff0c;随着“互联网”、“云计算”以及“智能硬件”等领域发展迅速&#xff0c;程序员再次迎来第二春&#xff01; 为此&#xff0c…

淘宝商品评论接口

Request address: //api.onebound.cn/taobao/api_call.php? num_iid525248995106&data&page1&api_nameitem_review&langzh-CN Result Object: { “items”: { “total_results”: “1020466”, “page_size”: “10”, “page”: “1”, “item”: [ { “ra…

淘宝、天猫评论如何抓取?

一、原理 以天猫为例 首先在浏览器地址栏中输入https://www.tmall.com/打开天猫商城&#xff0c;任意检索某一商品&#xff0c;以手机为例&#xff0c;搜索结果如下图所示&#xff1a; 任意点开其中的某个商品&#xff1a; 我们直奔主题找到红框范围内的&#xff1a;累计评价…

淘宝差评回复模板,最新最全差评回复话术

**淘宝差评回复模板**&#xff0c;最新最全差评回复话术有哪些&#xff1f;我们都知道&#xff0c;做电商就一定离不开淘宝&#xff0c;相信很多淘宝卖家都希望得到如潮的好评&#xff0c;而不希望店铺下面的评价出现差评。差评会影响客户的购买&#xff0c;也会降低店铺整体信…

AI 在编程、写作、绘画领域的占卜:从 GitHub Copilot 到 ChatGPT,再到 Stable Diffusion...

PS&#xff1a;就当前节点&#xff08;2023.02.22&#xff09;而言&#xff0c;我虽然研究过一段时间传统的机器学习&#xff0c;但是并不擅长深度学习等领域&#xff0c;所以很多 AI 领域相关的词汇&#xff0c;我是不擅长的&#xff0c;只为自己总结一下&#xff0c;方便在未…

助力研发效能变革,第七届Techo TVP 开发者峰会圆满落下帷幕

引言 在互联网数字企业结束“野蛮扩张”、追求高质量增长的今天&#xff0c;研发效能已然成为企业关注的核心命题。伴随着云原生概念在软件领域的落地生根&#xff0c;云原生正驱动软件应用设计、实现、部署及运维方式的巨变&#xff0c;为研发效能治理带来了新的挑战与机遇&am…

创新源于生活,赋能实践 | Next-Gen GPT 开启技术风暴新纪元

点击上方蓝字 关注我们 &#xff08;本文阅读时间&#xff1a;15分钟) 文末有惊喜 大家好&#xff01;我是爱吃、爱玩、更爱学习技术&#xff0c;IT界新晋小红人&#xff0c;开发者的好朋友——比特熊&#xff01; 今天是我们【比特熊故事汇2.0】AOAI的特别专场&#xff0c;我们…

当DevOps遇到AI,黑马迎来3.0时代丨IDCF

随着GhatGPT的爆火&#xff0c;人工智能和研发效能&#xff0c;无疑成为了2023的两个最重要的关键词。大规模语言模型LLM和相关应用的快速发展正在对研发团队的工作方式产生深远影响&#xff0c;这几乎象征着新的生产力革命的到来。 那么&#xff0c;作为一名工程师&#xff0…

2023中国智能应用发展论坛在京开幕,智领云受邀参加,并取得圆满成功

4月18日-4月19日&#xff0c;由中国软件行业协会主办的2023第二届中国国际软件发展大会在北京国家会议中心隆重举行。大会作为中国最具影响力的软件产业大会之一&#xff0c;吸引数千位观众到场。 2023中国国际软件发展大会央视新闻报道 4月19日&#xff0c;作为大会分论坛之一…

中国AIGC产业峰会:大咖云集共探AI新世界

首届中国AIGC产业峰会今日在京举行&#xff0c;大会由量子位主办&#xff0c;聚集起了领域内产学研代表&#xff0c;分享和探讨了包括大模型、生成式AI、ChatGPT等在内时下热议趋势和话题。同时&#xff0c;首份中国AIGC产业全景报告暨中国AIGC 50正式发布。 2023年&#xff0c…