首页 > 其他分享 >实验2

实验2

时间:2023-03-16 19:11:18浏览次数:27  
标签:include int scanf 实验 printf main

实验任务1

实验代码

#include <stdio.h>
#include <time.h>
#include <stdlib.h>

#define N 5
#define R1 586
#define R2 701

int main() {
	
	int number, i;
	
	srand(time(0));
	
	for(i = 0;i < N; i++) {
		number = rand() % (R2 - R1 + 1) + R1;
		printf("20338330%04d\n", number);
	}
	
	
	return 0;
} 

实验结论

回答问题

得到一个在区间[586,701]内的随机数
在班级内随机点名

实验任务2

实验代码

#include <stdio.h> 

int main() {
	double x, y;
	char c1, c2, c3;
	int a1, a2, a3;
	
	scanf("%d%d%d", &a1, &a2, &a3); /*没加&*/ 
	printf("a1 = %d, a2 = %d, a3 = %d\n", a1, a2, a3);
	
	getchar();
	scanf("%c%c%c", &c1, &c2, &c3);
	getchar();
	printf("c1 = %c, c2 = %c, c3 = %c\n", c1, c2, c3);
	
	scanf("%lf,%lf", &x, &y); /*应该用lf */
	printf("x = %lf, y = %lf\n", x, y);
	
	
	
	return 0;
}

实验结论

实验任务3

实验代码

#include <stdio.h>
#include <math.h>

int main() {
	
	double x, ans;
	
	while(scanf("%lf", &x) != EOF) {
		ans = pow(x, 356);
		printf("%.2f的365次方:%.2f\n", x, ans);
		printf("\n");
	}
	
	return 0;
} 
#include <stdio.h>
#include <math.h>

int main() {
	
	double x, ans;
	
	while(scanf("%lf", &x) != EOF) {
		ans = 9.0 / 5 * x + 32;
		printf("摄氏度%.2f时,华氏度%.2f\n", x, ans);
		printf("\n");
	}
	
	return 0;
} 

实验结论


实验任务4

实验代码

#include <stdio.h>

int main() {
	
	char c;
	
	while(scanf("%c", &c) != EOF) {
		getchar();
		if(c == 'r') printf("stop!\n");
		else if(c == 'g') printf("go go go\n");
		else if(c == 'y') printf("wait a minute\n");
		else printf("something must be wrong...\n");
	}
	
	
	return 0;
}

实验结论

实验任务5

实验代码

#include <stdio.h>
#include <stdlib.h>
#include <math.h>

int main() {
	
	srand(time(0));
	
	int d = rand() % 30 + 1;
	
	printf("猜猜2023年4月哪一天会是你的lucky day\n\n");
	printf("开始喽,你有三次机会,猜吧(1~30):");
	
	int x;
	scanf("%d", &x);
	printf("\n");
	
	if(x == d) {
		printf("哇,猜中了:~)");
	} 
	else {
		if(x < d) { printf("你的日期猜早了,你的lucky day还没到呢\n\n"); }
		if(x > d) { printf("你的日期猜晚了,你的lucky day已经过了\n\n"); }
		printf("再猜(1~30):");
		scanf("%d", &x);
		printf("\n");
		
		if(x == d) {
			printf("哇,猜中了:~)");
		} 
		else {
			if(x < d) { printf("你的日期猜早了,你的lucky day还没到呢\n\n"); }
			if(x > d) { printf("你的日期猜晚了,你的lucky day已经过了\n\n"); }
			printf("再猜(1~30):");
			scanf("%d", &x);
			printf("\n");
		
			if(x == d) {
				printf("哇,猜中了:~)");
			} 
			else {
				if(x < d) { printf("你的日期猜早了,你的lucky day还没到呢\n\n"); }
				if(x > d) { printf("你的日期猜晚了,你的lucky day已经过了\n\n"); }
				printf("次数用完了,偷偷告诉你:4月,你的lucky day是%d号", d);
			}
		}
	}
	
	
	return 0;
}

实验结论


实验任务6

实验代码

#include <stdio.h>

int main() {
	
	int i, j;
	
	for(i = 1;i <= 9; i++) {
		for(j = 1;j <= i; j++) {
			printf("%d*%d =%3d ", j, i, j * i);
		} 
		printf("\n");
	}
	
	return 0;
}

实验结论

实验任务7

实验代码

#include <stdio.h>

int main() {
	
	int n;
	
	printf("input n:");
	scanf("%d", &n);
	
	for(int i = 1;i <= n; i++) {
		for(int k = 1;k <= 3; k++) {
			for(int j = 1;j <= i - 1; j++) {
				printf("      ");
			}
			for(int j = 1;j <= 2 * (n - i) + 1; j++) {
				if(k == 1) printf(" O    ");
				if(k == 2) printf("<H>   ");
				if(k == 3) printf("I I   ");
			}
			printf("\n");
		}
	}
	
	
	return 0;
}

实验结论


标签:include,int,scanf,实验,printf,main
From: https://www.cnblogs.com/czhui666/p/17223841.html

相关文章

  • 网络对抗 Exp1-逆向破解实验
    目录逆向及Bof基础实践目标实践内容实践思路BOF原理基础知识准备实验过程直接修改程序机器指令,改变程序执行流程通过构造输入参数,造成BOF攻击,改变程序执行流注入Shellcode......
  • 实验二
    任务一#include<stdio.h>#include<stdlib.h>#include<time.h>#defineN5#defineR1586#defineR2701intmain(){intnumber;inti;srand(time(0));f......
  • 实验2
    #include<stdio.h>#include<stdlib.h>#include<time.h>#defineN5#defineR1586#defineR2701intmain(){intnumber;inti;sr......
  • 网络对抗实验一 逆向及Bof基础实践--20201313
    目录1逆向及Bof基础实践说明1.1实验内容1.2基础知识1.2.1NOP,JNE,JE,JMP,CMP汇编指令的机器码:1.2.2掌握反汇编与十六进制编程器2直接修改程序机器指令,改变程序......
  • lab1实验报告
    lab1实验报告一、实验思考题Thinking1.1运行readelf工具readelf-hvmlinux运行自己编写的readelf./readelfvmlinux注意到Data中显示为bigendian,而当前我们完成......
  • 火山引擎 DataTester:A/B 实验如何应用在抖音的产品优化流程中?
    更多技术交流、求职机会,欢迎关注字节跳动数据平台微信公众号,回复【1】进入官方交流群 日前,在WOT全球创新技术大会上,火山引擎DataTester技术负责人韩云飞做了关于字......
  • 易基因:高通量测序后的下游实验验证方法——ChIP-seq篇|干货系列
    大家好,这里是专注表观组学十余年,领跑多组学科研服务的易基因。此前,我们分享了染色质免疫共沉淀测序(ChIP-seq)的数据挖掘思路,进而筛选出TF结合/组蛋白修饰的目标区域和候选......
  • 实验1
    实验任务1实验源码:1#task12print('hey,u')34print('hey','u')56x,y,z=1,2,37print(x,y,z)89print('x=%d,y=%d,z=%d'%(x,y,z))10print('x......
  • 实验一
    实验任务1源代码#print输出的几种用法#用法1:用于输出单个字符串或单个变量print('hey,u')#用法2:用于输出多个数据项,用逗号分隔print('hey','u')x,y,z=1,2,3prin......
  • 实验1
    print('hey,u')print('hey','u')x,y,z=1,2,3print(x,y,z)print('x=%d,y=%d,z=%d'%(x,y,z))print('x={},y={},z={}'.format(x,y,z))print(f'x={x},y={y},z={z}')......