Java逐行打印
Posted 王六六同学
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java逐行打印相关的知识,希望对你有一定的参考价值。
逐行输出打印
package com.example;
import java.util.Scanner;
/**
* @author WanZi
* @create 2022-10-09 19:43
*/
/*
2 2
100 200
50 50
50 50
100 100
*/
public class Main08
public static void main(String[] args)
Scanner sc = new Scanner(System.in);
int m = sc.nextInt();
int n = sc.nextInt();
int[][] nums1 = new int[m][n]; //A
for(int i=0;i<m;i++)
for(int j=0;j<n;j++)
nums1[i][j] = sc.nextInt();
int[][] nums2 = new int[m][n]; //B
for(int i=0;i<m;i++)
for(int j=0;j<n;j++)
nums2[i][j] = sc.nextInt();
int[][] res = new int[m][n];
for(int i=0;i<m;i++)
for(int j=0;j<n;j++)
res[i][j] = nums1[i][j] + nums2[i][j] * 2 - 255;
if(res[i][j] < 0)
res[i][j] = 0;
else if(res[i][j] > 255)
res[i][j] = 255;
else
res[i][j] = res[i][j];
System.out.print(res[i][j]);
System.out.print(" ");
System.out.println();
以上是关于Java逐行打印的主要内容,如果未能解决你的问题,请参考以下文章