题目 2760: 整型与布尔型的转换 摘要:将一个整型变量的值赋给一个布尔型变量,再将这个布尔型变量的值赋给一个整型变量,得到的值是多少?”不知道“”#include<iostream>using namespace std;int main(…… 文章列表 2023年04月15日 0 点赞 0 评论 72 浏览 评分:9.9
各种公式定理 摘要:海伦公式: a,b,c: 三角形的三条边 P = (a+b+c)/2 S = √p*(p-a)*(p-b)*(p-c)勾股定理: a^2 + b^2 = c^…… 文章列表 2023年04月16日 0 点赞 0 评论 98 浏览 评分:9.9
题目 1046: [编程入门]自定义函数之数字后移 摘要:#includevoid zhuanhuan(){ int n,i,m,j; scanf("%d",&n); int a[n]; for(i=0;i<n;i++){ …… 文章列表 2023年04月21日 0 点赞 0 评论 71 浏览 评分:9.9
任意输入1到a(未知数)的数,判断其数字是否为完数。 摘要:#include<stdio.h>int main(){int a,b,c,d;scanf("%d",&a);for(b=1;b<=a;b++){ c=0; for(d=1;d<=b…… 文章列表 2023年04月22日 0 点赞 0 评论 77 浏览 评分:9.9
我写什么呢 摘要:。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。…… 文章列表 2023年04月22日 0 点赞 1 评论 100 浏览 评分:9.9
JIOOOOOOO 22222 6666 摘要:#include <iostream>using namespace std;int main(){ int a,b,c; cin >>a>>b>>c; if(a<=b && b<=…… 文章列表 2023年04月22日 0 点赞 1 评论 49 浏览 评分:9.9
6666666666666666666666666666666 摘要:原题链接:三进制小数解题思路:三进制转换与二进制类似,三进制小数的转换是乘以3,取整,然后顺序输出即可。注意的是最后一位要四舍五入哦。原来方法考虑不周,没有考虑特殊情况,直接输出了,测试数据不够强大,…… 文章列表 2023年04月22日 0 点赞 1 评论 45 浏览 评分:9.9
题目 1031: [编程入门]自定义函数之字符串反转 摘要:#include#includeint main(){ char a[520]; gets(a); int cd=strlen(a);//strlen函数测量字符串长度;不算‘\0’…… 文章列表 2023年04月24日 0 点赞 2 评论 62 浏览 评分:9.9
c++入门讲解(复杂) 摘要:# c++入门讲解 ### 1、C++编译流程 以Unix系统编译中间文件为说明: .cpp—(编译预处理)—>.ii—(编译)—>.s—(汇编)—>.o—(ld,连接)—>.out ### …… 文章列表 2023年05月06日 0 点赞 0 评论 136 浏览 评分:9.9
题目 1050: [编程入门]结构体之成绩记录 摘要:#includestruct student{ char xuehao[20]; char name[20]; int cj[3]; }; void input(struct…… 文章列表 2023年05月06日 0 点赞 0 评论 77 浏览 评分:9.9