编写题解 2840: 向量点积计算 摘要:package arrLast; //题目 2840: 向量点积计算 import java.util.Scanner; public class t_2840 { public static…… 题解列表 2024年01月31日 0 点赞 0 评论 186 浏览 评分:0.0
向量点积计算 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[1000],b[1000];int main(){ int n,s…… 题解列表 2023年07月17日 0 点赞 0 评论 136 浏览 评分:0.0
2840: 向量点积计算 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[10000],b[10000];int main(){ int …… 题解列表 2023年07月17日 0 点赞 0 评论 195 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, a[1000][2],i,result=0; scanf("%d", &n); …… 题解列表 2023年06月03日 0 点赞 0 评论 187 浏览 评分:0.0
给用Java的开一下荒土 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] a…… 题解列表 2023年04月04日 0 点赞 0 评论 374 浏览 评分:0.0
向量点积计算 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,a[1000],b[1000],c[1000]; int i,sum=0; scanf("%d",…… 题解列表 2023年02月20日 0 点赞 0 评论 281 浏览 评分:0.0
向量点积计算(建立结构体) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct xy{ int a; int b;}spot[1000];int main(){ int n,sum=0; scanf("…… 题解列表 2023年02月05日 0 点赞 0 评论 253 浏览 评分:0.0