#include<stdio.h>
int main()
{
int n = 0;
int m = 0;
scanf_s("%d %d", &n, &m);
int arr[10][10] = { 0 };
int max = 0;
int x = 0;
int y = 0;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
scanf_s("%d", &arr[i][j]);
if (arr[i][j] > max)
{
x = i + 1;
y = j + 1;
max = arr[i][j];
}
}
}
printf("%d %d\n", x, y);
return 0;
}
基于SpringBoot框架,如何实现文件的上传与下载查看
提要
本项目借鉴于spring-guides/gs-uploading-files: Uploading Files :: Learn how to build a Spring application that accepts multi-part file uploads. (github.com)SpringBoot官网学习文档关于如何下载文…