摘要:
3.题目描述 #include<iostream> #include<cstdlib> #include<cstdio> #include<cstring> using namespace std; char c[1005]; bool vis[1005]; int main(){ scanf("% 阅读全文
摘要:
1.题目描述 【程序功能】 随机生成n个10-100之间的自然数,其中n不大于50,实现对其从小到大排序,分别输出排序前、后的数据。 【程序调试要求】在给定的程序中,只允许在原语句上进行修改,不能增加或删除整条语句或修改算法(共计有5处错误,已在错误语句后用//标出)。 【程序运行结果】 请输入产生 阅读全文
摘要:
1.题目描述 #include<iostream> #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<ctime> struct date{ int y,m,d; }; struct NODE{ 阅读全文
摘要:
1.题目描述 利用一维数组,从低位开始反向存放二进制数,每位数为一个数组元素。求该二进制数对应的十进制数。 如二进制数:1,0,0,1,0,1,1,0,1 十进制数为:361 #include<iostream> #include<cstdio> #include<cstring> #include 阅读全文