倾世冷悠


私信TA

用户名:15059881879

访问量:14439

签 名:

2022.3.7我回来啦,备研啦

等  级
排  名 265
经  验 5864
参赛次数 23
文章发表 35
年  龄 20
在职情况 学生
学  校 TYKJDX
专  业 智能科学与技术

  自我简介:

一个萌新,还望各位大佬多多指教

 

0.0分

3 人评分

  评论区

我试了很多遍没有问题,为什么不让我过
#include <iostream>

using namespace std;

int main() {
    int N, result;
    int a, product = 1;
    cin >> N;
    for (int i = 0; i < N; i++) {
        cin >> a;
        product *= a;
    }
    result = product - (product / 10) * 10;   
    cout << result << endl; 
    cout << product << endl;
}
2021-11-28 19:49:58
一直不给我过就很离谱
能帮我看看么好兄弟
#include <iostream>
using namespace std;

int main()
{
    int a, b, c;
    c = 0;
    cin >> a;
    for (int i = 0; i < a; i++) {
        cin >> b;
        c *= b;
    }
    cout << c % 10;
    return 0;
}
2020-11-30 01:20:03
为啥我这个oj就不给过啊,说答案错误6%,枯了,请求大佬指点迷津。
#include<iostream>
using namespace std;
int main()
{
	int ai, cheng = 1, n, t = 1;
	cin >> n;
	while (t<= n)
	{
		cin >> ai;
		ai %= 10;
		cheng = cheng * ai;
		t++;
	}
	cout << cheng % 10 << endl;
	return 0;
}
2020-04-04 21:49:36
  • «
  • 1
  • »