解题思路:
注意事项:
参考代码:
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
//输入n个数
int arr [] = new int[n];
String res = "";
for (int i=0;i<n;i++){
arr[i] = sc.nextInt();
//对arr[i]分 三种情况
if (arr[i]<0) {
//情况一:小于0
if (arr[i] == -1) {
//+/-1都要进行特殊处理
res = res + "-x^" + (n - i);
} else {
res = res + "-" + Math.abs(arr[i]) + "x^" + (n - i);
}
}
else if (arr[i]>0){
//情况二:大于0
if (arr[i] == 1) {
//+/-1都要进行特殊处理
res = res + "+x^" + (n - i);
} else {
res = res + "+" + arr[i] + "x^" + (n - i);
}
}
else{
//情况三:为0则直接跳过本轮循环
continue;
}
}
System.out.println(res.substring(1,res.length()-2));
sc.close();
/*
6
1 0 3 4 -2 2
*/
}
}
0.0分
0 人评分
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C++代码)(手动优化一下计算)浏览:1365 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:573 |
简单的a+b (C语言代码)浏览:564 |
最小公倍数 (C语言代码)浏览:894 |
printf基础练习2 (C语言代码)浏览:321 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:1015 |
蚂蚁感冒 (C语言代码)浏览:1408 |
数字游戏 (C++代码)浏览:1240 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:729 |
C语言程序设计教程(第三版)课后习题11.3 (C语言代码)浏览:661 |