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

int main()
{
    int c = 0;
    char* s;
    char temp[200] = {};
    scanf("%s", temp);
    s = temp;

    while (*s){
        if (*s == '#') break;
......................
阅读全部 | gougoudan 贴于 2020年6月24日 10:02     hide bbsi
#include <stdio.h>

int main()
{
    float d, c, z;
    scanf("%f %f", &d, &c);
    z = d*c;
    if (z >= 399) z -= 80;
    else if (z >= 299) z -= 50;
    else if (z >= 199) z -= 30;
    printf("%.2f\n", z);
    return 0;
......................
阅读全部 | gougoudan 贴于 2020年6月24日 09:56     hide bbsi
#include <stdio.h>

int main()
{
    const float pi = 3.1416f;
    float r, l;
    scanf("%f %f", &l, &r);
    printf("%.2f\n", pi*r*r + 2 * r*l);
    return 0;
}
阅读全部 | gougoudan 贴于 2020年6月24日 09:50     hide bbsi
#include <stdio.h>

int main()
{
    const float pi = 3.1416f;
    float r, l;
    scanf("%f %f", &l, &r);
    printf("%.2f", pi*r*r + 2 * r*l);
    return 0;
}
阅读全部 | gougoudan 贴于 2020年6月24日 09:49     hide bbsi
C语言初学者,请问这是啥意思,有啥子用呀

int m;
m = *a;
*a = *b;
*b = m;
阅读全部 | wegame 贴于 2020年6月23日 00:08     show bbsi
ssssssssss
阅读全部 | YT_zhai 贴于 2020年6月21日 18:19     show bbsi
#include <stdio.h>
bool isPrime_2(int n){

    if ((n == 2) || (n == 3)) return 1;
    if ((n % 6 != 1) && (n % 6 != 5)) return 0;
    for (int i = 5; i*i <= n; i += 6){
        if ((n%i == 0) || (n % (i + 2) == 0))
            return 0;
    }
    return 1;
}
void xuanxian2(int n, int m)
......................
阅读全部 | gougoudan 贴于 2020年6月20日 18:06     hide bbsi
ELF Header

  Class:   ELF32
  Encoding:   Little endian
  ELFVersion: Current
  Type:    Shared object file
  Machine: Intel 80386
  Version: Current
  Entry:   0x4d0
  Flags:   0x0

Section Headers: Size=1d
......................
阅读全部 | YT_zhai 贴于 2020年6月20日 12:24     hide bbsi
dd
阅读全部 | YT_zhai 贴于 2020年6月20日 10:25     show bbsi
#include <stdio.h>
bool isPrime_2(int n){

    if ((n == 2) || (n == 3)) return 1;
    if ((n % 6 != 1) && (n % 6 != 5)) return 0;
    for (int i = 5; i*i <= n; i += 6){
        if ((n%i == 0) || (n % (i + 2) == 0))
            return 0;
    }
    return 1;
}
void xuanxian2(int n, int m)
......................
阅读全部 | gougoudan 贴于 2020年6月17日 12:52     hide bbsi
上一页 37 38 39 40 41 42 43 44 45 46 下一页