首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴随便看看C语言
#include <stdio.h>
double jc(int o);
int main (void)
{
    double s,e=1;
    int i,n;
    scanf("%d",&n);
    if(n>=0&&n<=1000){
    for(i=1;i<=n;i++)
    {
        s=jc(i);
        e=e+1.0/s;
......................
阅读全部 | elhut 贴于 2022年4月5日 21:14     hide bbsi
/**
 * 【程序25】
 * 题目:求1+2!+3!+...+20!的和。
 * 分析:此程序只是把累加变成了累乘。
 */

#include <stdio.h>

void main(){
        int  b = 1, i , j ;
        float  sum = 0;
        for ( j = 2 ; j <= 20; j++) {
......................
阅读全部 | 代码之光 贴于 2022年4月5日 15:43     hide bbsi
/*
2022年3月29日14点15分
输入年份、月份、日期,输出这一天是该年份下的第几天。
*/

#include <iostream>
using namespace std;

int run(int year)
{
    if (year % 4 == 0 && year % 100 != 0) return true;
    else if (year % 400 == 0) return true;
......................
阅读全部 | StarLiver 贴于 2022年3月29日 14:16     hide bbsi
#include <stdio.h>
int gcd(int numa,int numb,int numc);
int i,j=1,k,d;
int a,b,c;
int main() {
    scanf("%d %d %d",&a,&b,&c);
    d=gcd(a,b,c);
    return 0;
}
//最大公约数
int gcd(int numa,int numb,int numc){
    int a=1;
......................
阅读全部 | anlagreenya 贴于 2022年3月29日 00:02     hide bbsi
#include <stdio.h> 
/*int main(){ 
    int a=10;
    int c;
    float b;
    c=a/3.0; 
    b=((double)(3/2)+0.5+(int)1.99*2);
    printf("%d\n",c);
    printf("%1f",b);
   // return 0; 
    
}*/
......................
阅读全部 | xutingting 贴于 2022年3月28日 23:22     hide bbsi
#include <stdio.h>
#include <iostream>
#include <math.h>

float f(float x, float y, float z) {
float a = x * x + 9.0f / 4.0f * y * y + z * z - 1;
return a * a * a - x * x * z * z * z - 9.0f / 80.0f * y * y * z * z * z;
}

float h(float x, float z) {
for (float y = 1.0f; y >= 0.0f; y -= 0.001f)
if (f(x, y, z) <= 0.0f) {
......................
阅读全部 | czw2011 贴于 2022年3月26日 16:48     hide bbsi
#include <stdio.h>

unsigned foo( unsigned n );

int main( void )
{
    unsigned n;
    printf( "请输入台阶的级数:" );
    scanf( "%u", &n );
    printf( "走完%u级台阶有%u种走法\n", n, foo(n) );
}

......................
阅读全部 | 小神女 贴于 2022年3月20日 21:39     hide bbsi
#include <stdio.h>

unsigned foo( unsigned n );

int main( void )
{
    unsigned n;
    printf( "请输入台阶的级数:" );
    scanf( "%u", &n );
    printf( "走完%u级台阶有%u种走法\n", n, foo(n) );
}

......................
阅读全部 | 小神女 贴于 2022年3月20日 21:39     hide bbsi
#include <stdio.h>
int main()
{
float a, b, c, t;
scanf_s("%f,%f,%f", &a, &b, &c);
if (a > b)
{
t = a;
a = b;
b = t;
}
if (a > c) {
......................
阅读全部 | 快乐人儿 贴于 2022年3月16日 17:04     hide bbsi
/**
 * 【程序8】
 * 题目:输出9*9口诀。
 * 程序分析:分行与列考虑,共9行9列,i控制行,j控制列。
 */

#include<stdio.h>

int main() {
    int i,j,result;
    printf("\n");
    for (i=1;i<10;i++) {
......................
阅读全部 | yuanjie123 贴于 2022年3月10日 21:50     hide bbsi
上一页 20 21 22 23 24 25 26 27 28 29 下一页