c语言算奖金的小问题#include<iostream.h>int main(){long int idouble bonus1,bonus2,bonus4,bonus6,bonus10,bonusbonus1=100000*0.1bo2023-02-24Python140
c语言程序设计题目要求设计一个程序当输入项数时输出兔子序列(1,1,2,3,5,8......)# include "stdio.h"long p(int a){if (a<3)return(1)else return(p(a-1)+p(a-2))}main(){int a,iscanf("%2023-02-24Python200
刚接触R语言,Error in file(file, "rt") : 无法打开链结,显示错误: 找不到对象'myData',怎么更改路径R怎么知道你的文件是放在桌面而不是别的地方。两个办法:设定工作目录:setwd("d:")然后把txt放在d盘根目录下,用read.table读取直接把路径带入读入read.table("d:exam0202023-02-24Python330
c语言 函数 输入输出#include<iostream>#include<cstring>#include<cstdlib>using namespace stdchar * reserv2023-02-24Python220
r语言 错误:找不到对象cor.test(x, ...)## Default S3 method:cor.test(x, y,alternative = c("two.sided", "less", "greate2023-02-24Python230
用C语言在下图每个方格中分别填入1~12,每个数字只能填一次int res[12]int check(int t) {int sum_rule[][4] = {{0,1,2,3}, {0,2,4,6}, {1,3,5,7}, {0, 1, 8, 9}, {2,3,10,11}}int i,jf2023-02-24Python170
C语言怎么实现输错了 重新输入可以设置一个while循环在其体内输入数据,经判断输入正确则跳出循环,否则提示重新输入,直到输入正确。举例代码如下:#include "stdafx.h"If the vc++6.0, with this li2023-02-24Python130
C语言猜数游戏(高低游戏)#include <stdio.h>#include <stdlib.h>void clear(){ scanf("%*[^n]") scanf("%*c&qu2023-02-24Python250
php调用java接口,java段要求json格式的请求参数java端取值方式错了,用流取.br = request.getReader()StringBuffer sb = new StringBuffer("")String tempwhile ((t2023-02-24Python140
python打开nes文件python打开nes文件的方法如下:1、文件打开与关闭在python。2、使用open函数。3、打开一个已经存在的文件,或者创建一个新文件open文件名。4、访问模式。题主你好,将文件路径前加个字母, r, 试试,即改为:f = op2023-02-24Python200
python打开nes文件python打开nes文件的方法如下:1、文件打开与关闭在python。2、使用open函数。3、打开一个已经存在的文件,或者创建一个新文件open文件名。4、访问模式。题主你好,将文件路径前加个字母, r, 试试,即改为:f = op2023-02-24Python220
用C语言编写小学生四则运算系统#include #include #include int num=0,num1=0int m[1000][100]char oper[4]={'+','-','*','2023-02-23Python240
C语言怎么实现输错了 重新输入可以设置一个while循环在其体内输入数据,经判断输入正确则跳出循环,否则提示重新输入,直到输入正确。举例代码如下:#include "stdafx.h"If the vc++6.0, with this li2023-02-23Python180
JAVA用split分割文件地址时斜杠问题String filename="d:\upload\133.jpg"String name[] = filename.split("\\")应该这样才对,本身只是一个转义符,当要用做字符2023-02-23Python160
C语言出错画彩色图形#include"graphics.h"main(){int drive,modedrive=DETECTinitgraph(&drive,&mode,"c:tc30\bgi&q2023-02-23Python160
C语言编写四则运算\分得给!#include<stdio.h>#include<stdlib.h>#include<time.h>voidmain(){inta,b,i,c,d,e,f2023-02-23Python110
c语言编程由于你只学了结构,所以很多好方法都不干写哦。比如说每次输入错误,应该让顾客重新输入才对,而不是直接退出。还有,main必须是int型。切不可被谭浩强毒害哦!!!int main(){ int manual, auto int GasType2023-02-23Python160
C语言编写四则运算\分得给!#include<stdio.h>#include<stdlib.h>#include<time.h>voidmain(){inta,b,i,c,d,e,f2023-02-23Python170
JAVA字体设置问题setFont(new Font("隶书", Font.BOLD+Font.ITALIC, 12))这个写法错了。不应该是“+”号,要用位运算符:setFont(new Font("隶书", Font2023-02-23Python280