2800: 多边形内角和 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int n = 0, ans = 0; scanf("%d", &n); …… 题解列表 2022年11月07日 0 点赞 0 评论 140 浏览 评分:0.0
多边形内角和 摘要:解题思路:注意事项:参考代码: #include<stdio.h>int main(){ int a,b,c,n; int h; int sum=0; scanf("%d",&n); h=(n-2)*…… 题解列表 2022年11月08日 0 点赞 0 评论 416 浏览 评分:8.0
很简单 请各位指正 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int i,n,a,sum=0; scanf("%d",&n); for(i=1;i<n;i++)…… 题解列表 2022年12月20日 0 点赞 0 评论 238 浏览 评分:9.9
多边形内角和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,s1=0,s2,i,a[100]; scanf("%d",&n); s…… 题解列表 2023年01月13日 0 点赞 0 评论 83 浏览 评分: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
编写题解 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
多边形内角和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
多边形内角和 摘要:解题思路:注意事项:参考代码: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
不一样的答案,新手必看 摘要:解题思路:新手都能看懂注意事项:放心食用参考代码:#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
多边形内角和(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 评论 62 浏览 评分:0.0