首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴随便看看C++
#include <iostream>
#include <string>
#include <stdlib.h>

using namespace std;

#define N 200

//反转字符串
string res(string s)
{
int i = 0;
......................
阅读全部 | apull 贴于 2020年9月6日 18:43     hide bbsi
#include<cstdio>
char st[100];
int main()
{
        
                scanf("%s",st);
                for (int i = 0;st[i];++i)                                                    
                    {
                            if('A' <= st[i] <= 'Z')
                            st[i] += 1;
                    }                                                            
                      printf("%s\n",st)
......................
阅读全部 | Ivan0610 贴于 2020年8月19日 12:54     hide bbsi
#include <iostream>
using namespace std;

string res(string s)
{
    int i = 0; 
    int j = s.length() - 1;
    while (i < j)
    {
        swap(s[i], s[j]);
        i++;
        j--;
......................
阅读全部 | 楚煜 贴于 2020年8月12日 21:37     hide bbsi
#include <iostream>
using namespace std;

template <class T>
T accumulator(int count)
{
    T d, sum = 0;
    for (int i = 0; i < count; ++i){
        cout << "data" << i << " = ";
        cin >> d;
        sum += d;
    }
......................
阅读全部 | gougoudan 贴于 2020年8月10日 10:18     hide bbsi
#include <iostream>
#include <string>
using namespace std;

class line
{
public:
    line() { setValues(); };    // default constructor which calls setValues()
    line(const line &n) :a(n.a), b(n.b), c(n.c){}; // copy constructor
    void setValues();           // prompts users to input coefficients
    void printEquation();       // print the equation
    friend void calIntersection(line &l1, line &l2); // calculate the intersection of two lines
......................
阅读全部 | gougoudan 贴于 2020年8月10日 10:06     hide bbsi
#include <iostream>
#include <string>
using namespace std;

class CPU
{
public:
    CPU(float freq, float price);
    void upgradeCPU();
    void printCPUInfo();
private:
    float CPU_Frequency;
......................
阅读全部 | gougoudan 贴于 2020年8月10日 09:44     hide bbsi
#include <iostream>
using namespace std;
class Mortgage
{
protected:
    double  Payment;        // the monthly payment
    double  Loan;           // the dollar amount of the loan
    double  Rate;           // the annual interest rate
    double  Years;          // the number of years of the loan

public:
    Mortgage()
......................
阅读全部 | gougoudan 贴于 2020年8月10日 09:20     hide bbsi
#pragma comment(lib,"user32")
#pragma comment(lib,"gdi32")
#pragma comment(lib,"shell32")
#pragma comment(lib,"kernel32")

#include <tchar.h>
#include <windows.h>
 
#define ID_TIMER    1 
#define STRMAXLEN  25 //一个显示列的最大长度 
#define STRMINLEN  8  //一个显示列的最小长度
#pragma comment ( linker, "/subsystem:windows /entry:mainCRTStartup" ) //去除启动或退出程序时黑框
......................
阅读全部 | apull 贴于 2020年8月9日 12:18     hide bbsi
#include<iostream>
#include<cmath>
using namespace std;
const double c=0.0065;
const double C=-0.0014;
double xx(double t){
double tt=t/600;
double x=c+C*pow(0.109164*tt+1,-2.75229357798165);
return x;
}
int main()
{
......................
阅读全部 | zhabuye 贴于 2020年7月16日 01:16     hide bbsi
#include<iostream>
#include<cmath>
using namespace std;
const double c=0.00455;
const double C=-0.00255;
double xx(double t){
double tt=t/600;
double x=c+C*pow(0.109164*tt+1,-2.75229357798165);
return x;
}
int main()
{
......................
阅读全部 | zhabuye 贴于 2020年7月16日 01:15     hide bbsi
上一页 4 5 6 7 8 9 10 11 12 13 下一页