首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
12345678专题
编写一个程序,用valueOf()方法将long型数据12345678转换为字符串。再用toString()方法将十进制int型数据100转换为十六进制数表示的字符串。
public class TestValue { public static void main(String[] args) { long l = 12345678; int i = 100; String str1 = String.valueOf(l); String str2 = Integer.toString(i, 16).toUpperCase(); System.out.
阅读更多...
在一串数字中插入运算符号使等式成立,如12345678中插入“+”“-”“*”三种运算符号使得等于2004
#include<iostream>#include<math.h>using namespace std;int main(){int b[11]={1,2,3,4,5,6,7,8,9,9,9};//取x,y,z三个数用来定位符号在12345678中的位置for(int x=1;x<8;x++){for(int y=x+1;y<8;y++){for(int z=y+1;z<8;z++
阅读更多...
完成函数mask,使得它可以只保留输入字符串后四位字符,并将剩余字符变成井号#。 例如: mask('12345678') ='####5678' mask('a') = 'a'
完成函数mask,使得它可以只保留输入字符串后四位字符,并将剩余字符变成井号#。 例如: mask(‘12345678’) =’####5678’ mask(‘a’) = 'a’ def mask(string):if len(string)<=4:return stringelse:answer =string.replace(string[:-4],'#'*int(len(string)-4
阅读更多...