多边形内角和(for循环解题方法) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n,a,sum=0,b,c; scanf("%d",&n); for(i=0;i<…… 题解列表 2024年11月23日 0 点赞 0 评论 61 浏览 评分:0.0
不一样的答案,新手必看 摘要:解题思路:新手都能看懂注意事项:放心食用参考代码:#include <stdio.h>int main() { int n,x,z; scanf("%d",&n); z=(n-2)*180; for…… 题解列表 2024年11月06日 0 点赞 0 评论 95 浏览 评分:9.9
多边形内角和 摘要:解题思路:注意事项:参考代码:n = int(input())l = list(input().split())t = [int(i) for i in l]b = 0for i in t: b…… 题解列表 2024年07月29日 0 点赞 0 评论 83 浏览 评分:0.0
python 2800: 多边形内角和 摘要:参考代码:n = int(input()) aaa = map(int, input().split()) print((n - 2) * 180 - sum(aaa))…… 题解列表 2024年03月12日 0 点赞 0 评论 176 浏览 评分:6.0
多边形内角和 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ int n; cin>>n; int a[n-1]; int sum1=(n-2)*180…… 题解列表 2024年02月28日 0 点赞 0 评论 166 浏览 评分:9.9
多边形内角和C解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,sum,i; scanf("%d",&n); int a[n+1]; sum…… 题解列表 2024年02月17日 0 点赞 0 评论 70 浏览 评分:0.0
编写题解 2800: 多边形内角和 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,i,sum=0,C; scanf("%d",&n); int a[n-2]; …… 题解列表 2024年02月06日 0 点赞 0 评论 36 浏览 评分:0.0
多边形内角和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,j,o,sum=0; scanf("%d", &n); j = (n - 2) * 180; for…… 题解列表 2024年01月27日 0 点赞 0 评论 59 浏览 评分:0.0
多边形内角和 摘要:解题思路:利用题目给出的基本公式注意事项:仔细审题参考代码:n=int(input())ls=[int(i) for i in input().split()]m=(n-2)*180for i in …… 题解列表 2024年01月21日 0 点赞 0 评论 189 浏览 评分:9.9
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年01月11日 0 点赞 0 评论 102 浏览 评分:9.9