詹姆斯的实验三
作者:互联网
#include<stdio.h> #include<stdlib.h> #include<time.h> #define N 5 int main() { int x, n; srand(time(0)); for(n=1;n<=N;n++) { x = rand() % 100; printf("%3d",x); } printf("\n"); return 0; }
#include<time.h> #include<stdio.h> #include<stdlib.h> int main() { int x, n, y; srand(time(0)); x = 1 + rand() % 31; n = 0; printf("猜猜2021年5月哪一天是你的幸运日?\n开始喽,你有三次机会,猜吧(1~31):"); while(n<3){ scanf("%d", &y); if (y==x) { printf("猜对了!"); break; } else if (y<x) { if (n<3) printf("早了,幸运日在后面。\n再猜:"); else printf("早了,幸运日在后面。"); } else { if (n<3) printf("晚了,幸运日在前面。\n再猜:"); else printf("早了,幸运日在前面。"); } n++ ; } if (n<3) printf("\n"); else printf("次数用完咯,偷偷告诉你:五月,你的幸运日是%d号", x); return 0; }
#include<stdio.h> int main(){ long s; while(printf("Enter a number: "),scanf("%ld",&s)!=EOF) { int m, t=0, n=1; while(s!=0) { m=s%10; if(m%2!=0) { t=t+m*n; n=n*10; } s=s/10; } printf("New number is: %ld\n",t); } return 0; }
#include <math.h> #include <stdio.h> void solve(double a, double b, double c); int main() { double a, b, c; printf("Enter a, b, c: "); while(scanf("%lf%lf%lf", &a, &b, &c) != EOF) { solve(a, b, c); printf("Enter a, b, c: "); } return 0; } void solve(double a, double b, double c) { double x1, x2; double delta, real, imag; if(a == 0) printf("not quadratic equation.\n"); else { delta = b*b - 4*a*c; if(delta >= 0) { x1 = (-b + sqrt(delta)) / (2*a); x2 = (-b - sqrt(delta)) / (2*a); printf("x1 = %.2f, x2 = %.2f\n", x1, x2); } else { real = -b/(2*a); imag = sqrt(-delta) / (2*a); printf("x1 = %.2f + %.2fi, x2 = %.2f - %.2fi\n", real, imag, real, imag); } } }
#include<stdio.h> #include<math.h> double fun(int n); int main() { int n; double s; printf("Enter n(1~10): "); while(scanf("%d", &n) != EOF) { s = fun(n); printf("n = %d, s= %f\n\n", n, s); printf("Enter n(1~10): "); } return 0; } double fun(int n) {double s; int i, x=1, y=1; for(i=1,s=0;i<=n;i++){ x=x*i; s=s+y*1.0/x; y=-y;} return 0; }
#include<stdio.h> #include<math.h> int isPrime(int n); int main() { int x=0, y=0, i; for(i=101;i<=200;i++){ if(isPrime(i)){ printf("%5d",i); y=y+1; x++;} if(x%5==0) printf("\n"); } printf("\n素数有%d个",x); return 0; } int isPrime(int n) { int a, b, i; b=sqrt(n); for(i=2;i<=b;i++) {a=n%i; if(a==0) return 0; } }
#include <stdio.h> #include <stdlib.h> #include <windows.h> void printCharMan(int line, int col); // 函数声明 void printSpaces(int n); // 函数声明 int main() { int line, col; for(line=5, col=5; col<=60; col++) { printCharMan(line, col); Sleep(50); // 暂停50ms system("cls"); // 清除屏幕 } } // 打印n个空格 void printSpaces(int n){ int i; for(i=1; i<=n; i++) printf(" "); } // 在第line行第col列打印一个字符小人 void printCharMan(int line, int col) { int i, j; // 打印line-1行空行 for(i=1; i<=line-1; i++) printf("\n"); // 打印col-1个空格 printSpaces(col-1); // 在第line行、第col列打印字符小人的头 printf(" O \n"); // 打印col-1个空格 printSpaces(col-1); // 在第line行、第col列打印字符小人的身体 printf("<H>\n"); // 打印col-1个空格 printSpaces(col-1); // 在第line行、第col列打印字符小人的腿 printf("I I\n"); }
标签:main,int,double,詹姆斯,实验,printf,include,col 来源: https://www.cnblogs.com/wodanimama/p/14661864.html