如何解决提示the operation % is undefined for the argument type string,int的错误

简介:

今天在做一个用三元运算符判断奇偶的小练习时遇到“the operation % is undefined for the argument type string,int”错误的小插曲

开始的程序是这样写的

1
2
3
4
5
6
7
8
9
10
11
package  com.lixiyu;
import  java.util.Scanner;
public  class  ParityCheck {
public  static  void  main(String[] args){
     Scanner sc= new  Scanner(System.in);
     System.out.println( "请输入一个整数:" );
     String line=sc.nextLine();
    String flag=((line% 2 )== 0 )? "偶数" : "奇数" ;
     System.out.println( "这个数字是:" +flag);
}
}

这是我的写法,但它会提示无法确定类型String,int无法正常使用%的问题,要用%得是整型嘛。所以后来google看到国外论坛有遇到类型问题,他给的解决方法是:Assuming what the user inputs is really a number, you can use Integer.parseInt(weight) and compare that.

意思也就是要让line转换为整型的数,即用到Integer.parseInt()即可解决故改一下下面为

String flag=(Integer.parseInt(line)%2==0)?"偶数":"奇数"; 可以正常运行编译

自己写的正常运行的代码:

1
2
3
4
5
6
7
8
9
10
11
package  com.lixiyu;
import  java.util.Scanner;
public  class  ParityCheck {
public  static  void  main(String[] args){
     Scanner sc= new  Scanner(System.in);
     System.out.println( "请输入一个整数:" );
     String line=sc.nextLine();
    String flag=(Integer.parseInt(line)% 2 == 0 )? "偶数" : "奇数" ;
     System.out.println( "这个数字是:" +flag);
}
}

后来看了看书本上给出的参考答案:

1
2
3
4
5
6
7
8
9
10
import  java.util.Scanner;
public  class  ParityCheck {
     public  static  void  main(String[] args) {
         Scanner scan =  new  Scanner(System.in); // 创建输入流扫描器
         System.out.println( "请输入一个整数:" );
         long  number = scan.nextLong(); // 获取用户输入的整数
         String check = (number %  2  ==  0 ) ?  "这个数字是:偶数"  "这个数字是:奇数" ;
         System.out.println(check);
     }
}

它书本上面用到的是long(长整型)从获取用户输入数据上就已经控制了整数输入。貌似会更方便点。

路还长,继续学习。



本文转自lixiyu 51CTO博客,原文链接:http://blog.51cto.com/lixiyu/1302769,如需转载请自行联系原作者


相关文章
|
6月前
|
前端开发 Java 数据库连接
Spring Boot 升级 3.2 报错 Invalid value type for attribute ‘factoryBeanObjectType‘: java.lang.String
Spring Boot 升级 3.2 报错 Invalid value type for attribute ‘factoryBeanObjectType‘: java.lang.String
|
1月前
|
Python
[oeasy]python036_数据类型有什么用_type_类型_int_str_查看帮助
本文回顾了Python中`ord()`和`chr()`函数的使用方法,强调了这两个函数互为逆运算:`ord()`通过字符找到对应的序号,`chr()`则通过序号找到对应的字符。文章详细解释了函数参数类型的重要性,即`ord()`需要字符串类型参数,而`chr()`需要整数类型参数。若参数类型错误,则会引发`TypeError`。此外,还介绍了如何使用`type()`函数查询参数类型,并通过示例展示了如何正确使用`ord()`和`chr()`进行转换。最后,强调了在函数调用时正确传递参数类型的重要性。
20 3
|
3月前
|
Dart JavaScript 前端开发
Dart或Flutter中解决异常-type ‘int‘ is not a subtype of type ‘double‘
Dart或Flutter中解决异常-type ‘int‘ is not a subtype of type ‘double‘
123 4
|
3月前
|
SQL
Typecho——Argument 1 passed to Typecho\Router::get() must be of the type string
Typecho——Argument 1 passed to Typecho\Router::get() must be of the type string
29 0
|
5月前
|
JavaScript 前端开发 索引
JavaScript有7个数据类型:Number, String, Boolean, Null, Undefined, Symbol(BES6)和BigInt(ES10)组成基本类型
【6月更文挑战第25天】JavaScript有7个数据类型:Number, String, Boolean, Null, Undefined, Symbol(BES6)和BigInt(ES10)组成基本类型,而Object包括Array、Function等是引用类型。Objects可以包含键值对,Array是特殊的Object。Functions也是对象。`null`和`undefined`被视为特殊的原始值。
52 1
遍历字符串,String line = xxx for(int i = 0;i<line.length();i++){system.out.println(line.chartAt(i)); 单个
遍历字符串,String line = xxx for(int i = 0;i<line.length();i++){system.out.println(line.chartAt(i)); 单个
TS,数据类型概述,常见的基本数据类型有number/string/boolean/undefined/null,字符串用““,let food: string = ‘糖葫芦‘,布尔类型
TS,数据类型概述,常见的基本数据类型有number/string/boolean/undefined/null,字符串用““,let food: string = ‘糖葫芦‘,布尔类型
|
4月前
|
存储 Python
语音输入,python数据类型,type()用来查看数据类型,数据类型转换,int(x)转整数,float(x)转换为浮点数,str(x),将对象转为字符串,标识符,标识符不允许使用关键字,关键字参考
语音输入,python数据类型,type()用来查看数据类型,数据类型转换,int(x)转整数,float(x)转换为浮点数,str(x),将对象转为字符串,标识符,标识符不允许使用关键字,关键字参考
|
5月前
|
Java
String转化为Int
String转化为Int
|
6月前
channelSftp.put(InputStream src, String dst, int mode);里的mode都是什么类型的
【5月更文挑战第15天】channelSftp.put(InputStream src, String dst, int mode);里的mode都是什么类型的
81 2
下一篇
无影云桌面