首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴万致远醉帥的代码贴C++
#include<iostream>
#include<string>
#include<fstream> 
#include<windows.h>
using namespace std;
const double i = 1.5;
void cifang()
{
cout << "新功能正在开发中";
}
void jisuanqi(void)
{
......................
阅读全部 | 2020年4月14日 11:12
#include<iostream>
#include<iomanip>
using namespace std;
void yiwei()
{
int chengshu, beichengshu;
cout << "一位乘法(请从大到小输入)" << endl;
cin >> chengshu >> beichengshu;
system("cls");
cout << setw(7) << chengshu << endl;
cout << setw(1) << "×" << setw(5) << beichengshu << endl;
cout << setw(7) << "-------";
......................
阅读全部 | 2020年3月28日 13:16
#include<iostream>
using namespace std;
const int jj = 6;
int main()
{
int i = 1;
int main[jj],*p[jj];
cout << "记录表";
for (size_t i = 0; i < jj; i++)
{

cin >> main[i];
......................
阅读全部 | 2020年3月27日 17:54
1
万致远醉帥